Penambahan kolom tabek

This commit is contained in:
NoBody313
2025-05-08 16:13:37 +07:00
parent ca9fd810a7
commit bf6e9a0dff
4 changed files with 37 additions and 0 deletions
@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('letters', function (Blueprint $table) {
$table->string('address_to')->nullable();
$table->string('letter_scope')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('letters', function (Blueprint $table) {
$table->dropColumn(['address_to', 'letter_scope']);
});
}
};