環境 : Ubuntu 14.04
版本 : Laravel 4.2
$ php artisan migrate:make create_users_table
create_users_table
為要產生的 Migration 檔名及 Class 名稱
Migration 檔名
2014_06_25_081905_create_users_table.php
Class
class CreateUsersTable extends Migration {
public function up()
{
}
public function down()
{
}
}
所以為了避免 CLASS 檔名重複,在每一次的 Migration 建立指令必須為不同
$ php artisan migrate:make add_votes_to_user_table --table=users
$ php artisan migrate:make create_users_table --create=users
在 Migration 指令後加入 --table=users
,指定要處理的資料表為users
在 Migration 指令後加入 --create=users
,指定要新增的資料表為users