working on loan orders

This commit is contained in:
2023-11-23 18:28:24 +05:00
parent 83cc460638
commit 5e35dd6a11
14 changed files with 336 additions and 5 deletions

View File

@@ -15,6 +15,7 @@ return new class extends Migration
$table->id();
$table->string('region', 2)->index();
$table->jsonb('name');
$table->boolean('active')->default(true);
$table->timestamps();
});
}