create("input_type", function ($table) { $table->id('id'); $table->string('type'); $table->string('name'); $table->integer('status'); }); } public static function down(): void { Illuminate\Database\Capsule\Manager::schema()->drop("input_type"); } }