increments('id'); $table->integer('user_id'); $table->string('type')->comment('super:超级管理员 其他的表示平台管理员'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('admins'); } }