A complete platform for building web applications.

Creator seed

Seeding all seeder files to database or only the passed value, by default the third parameter is up and you can un-seed the seeder file by passed down.

php creator seed [version number | migration name] [up | down]

Examples

  • php creator seed

    Seeding all seeder files to database.

  • php creator seed 20160901000000

    Seeding this file seeds/20160901000000_ertikazos.php to database.

  • php creator seed ertikazos

    It will search for any seeds file end with _ertikazos.php, it equal to php creator seed 20160901000000.

  • php creator seed "*" down

    Un-seed all seed files from database.