#database config path
/app/config/database.php
#star up path
serverName/laravel/public
#php artisan migrate 這裡migrate的觀念與EntityFramework 5 Code First的觀念相同。
migrate:install
安裝Migration table, 會在資料庫中創建一個migrateion table, 紀錄migration版本
migrate:make somethingsomething
建立新版的資料庫異動檔案
migrate
執行資料庫格式升級 --> function up()
migrate:rollback
執行資料庫格式降級 --> function down()
migrate table file location : app/database/migrations/
1 | function up(){ |
1 | function down(){ |