tinyInteger('changepass')->after('loginnum')->nullable()->default(0)->comment('登陆需要修改密码'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('changepass'); }); } }