This commit is contained in:
2024-10-29 18:27:44 +05:00
parent e65e9be650
commit 2b943b3842
4 changed files with 24 additions and 5 deletions

View File

@@ -14,6 +14,8 @@ return new class extends Migration
Schema::create('outgoing_letters', function (Blueprint $table) {
$table->id();
$table->string('number')->nullable();
$table->string('name')->nullable();
$table->string('main_file')->nullable();
$table->timestamps();
});
}