我正在创建一个登录系统,我想在其中创建管理盘和仪表板,但我已经创建了表,我想在现有表中添加“isAdmin”列。
我看过几个教程,但都是徒劳的。我使用的是Laravel 5+版本。我使用了php artisan migrate:refresh
命令和回滚命令,但所有这些都无法正常工作。
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->integer('isAdmin');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}