This commit is contained in:
2025-12-20 11:36:14 +03:30
parent 3ecfdf02d9
commit 0a2df262e1
7 changed files with 69 additions and 9 deletions

View File

@@ -14,7 +14,7 @@ return new class extends Migration
Schema::create('rahdaran', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('code');
$table->string('code')->nullable();
$table->timestamps();
});
}