我使用Laravel 5.2並希望更改默認用戶表的列。我在CreateUsersTableLaravel默認用戶表
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
Schema::table('users', function ($table) {
$table->string('role');
$table->string('info');
$table->string('age');
$table->string('hobies');
$table->string('job');
});
}
寫道 和我在GIT的bash運行這些命令,但用戶表沒有改變。
php artisan migrate:refresh
php artisan migrate
我該如何解決它?
謝謝你,但我發現解決這個問題的簡單方法。 – Earthx9