integer('type_id')->nullable()->comment('合同类型id')->after('sign_date'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('contract', function (Blueprint $table) { $table->dropColumn('type_id'); }); } };