integer('sort_order')->default(1); $table->tinyInteger('is_enabled')->default(1); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('questions', function (Blueprint $table) { $table->dropColumn('sort_order'); $table->dropColumn('is_enabled'); }); } }