enum('form', ['work', 'wash']); $table->bigInteger('qty')->unsigned(); $table->renameColumn('tanggal', 'date'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('transactions', function (Blueprint $table) { $table->dropColumn('form'); $table->dropColumn('qty'); $table->renameColumn('date', 'tanggal'); }); } }