多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
php artisan make:migration create_products_table php artisan make:migration test_users_table --table=users php artisan migrate:status // 创建迁移表文件[会生成迁移文件,路径位置:\database\migrations\,如果是第一次执行,也会生成migrations表] php artisan make:migration create_test_table --create=test // 创建表[会生成test表] php artisan migrate // 重命名表[会生成一个新的迁移文件,在up函数中,编写:Schema::rename('test','tests');] php artisan make:migration rename_test_to_tests --table test // 删除表[dropIfExists 函数就是用来删除表] php artisan migrate:rollback // tests表中增加字段 php artisan make:migration add_avatar_into_test php artisan migrate // 生成填充文件 php artisan make:seeder TestsTableSeeder // 执行填充 php artisan db:seed php artisan db:seed --class=TestsTableSeeder php artisan make:seed TestsTableSeeder