date('birthday')->nullable()->comment('生日'); $table->string('email')->nullable()->comment('邮箱'); $table->boolean('status')->nullable()->default(1)->comment('状态0禁用1启用'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('admins', function (Blueprint $table) { // }); } };