Tag:volume production
-
Learn laravel from scratch (3) data migration and seed factory mass production test data
1、 Database migration 1. Enter the following command to create the migration file php artisan make:migration create_admin_user_table –create=admin_user In this case, the migration file can be modified according to the PHP code <?php use IlluminateDatabaseMigrationsMigration; use IlluminateDatabaseSchemaBlueprint; use IlluminateSupportFacadesSchema; class CreateAdminUserTable extends Migration { /** * Run the migrations. * * @return void */ public […]