【Laravel】数据库迁移

创建模型及数据库迁移文件:php artisan make:model Models/New -m 这里-m就是创建迁移文件

 

创建迁移:php artisan make:migration create_news_table

执行迁移(数据库):php artisan migrate

执行迁移(指定文件):php artisan migrate --path=/database/migrations/2020_06_04_103357_create_step_billings_table.php

执行回滚:php artisan migrate:rollback

posted @ 2021-08-26 10:27  鸿运小猫  阅读(38)  评论(0)    收藏  举报