main
Ilham Wara Nugroho 2025-12-10 09:49:28 +07:00
parent 57bb78bc0e
commit 63753083bb
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ return new class extends Migration
*/ */
public function up(): void public function up(): void
{ {
Schema::table('dataset_tambahan', function (Blueprint $table) { Schema::table('dataset-tambahan', function (Blueprint $table) {
$table->year('tahun_data')->nullable(); $table->year('tahun_data')->nullable();
}); });
} }
@ -21,7 +21,7 @@ return new class extends Migration
*/ */
public function down(): void public function down(): void
{ {
Schema::table('dataset_tambahan', function (Blueprint $table) { Schema::table('dataset-tambahan', function (Blueprint $table) {
// //
}); });
} }