Laravel 建立資料庫

hikarusun發表於2015-10-13

1.根目錄輸入

php artisan migrate

2.建立表

php artisan migrate:make create_authors_table --table authors --create

輸入上述程式碼後

app>database>migrations>會出現對應的檔案,編輯完成後

輸入

php artisan migrate

完成表的建立

相關文章