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'); + } +};