From 6a4c0f708b1859071f50a351e30b1d74fe572efd Mon Sep 17 00:00:00 2001 From: marszayn Date: Thu, 27 Feb 2025 10:48:21 +0700 Subject: [PATCH] feat: Menambahkan migrasi untuk tabel Penaatan --- ...025_02_26_083015_create_penaatan_table.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 database/migrations/2025_02_26_083015_create_penaatan_table.php diff --git a/database/migrations/2025_02_26_083015_create_penaatan_table.php b/database/migrations/2025_02_26_083015_create_penaatan_table.php new file mode 100644 index 0000000..b893db1 --- /dev/null +++ b/database/migrations/2025_02_26_083015_create_penaatan_table.php @@ -0,0 +1,28 @@ +id('PenaatanId'); + $table->string('NamaPenaatan'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('Penaatan'); + } +};