【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

浙公网安备 33010602011771号