add banks, payment purpose and user company tables

This commit is contained in:
2024-11-04 19:44:37 +05:00
parent 65e06200e2
commit 03b866df69
25 changed files with 625 additions and 67 deletions

View File

@@ -0,0 +1,30 @@
<?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::create('banks', function (Blueprint $table) {
$table->id();
$table->string('name')->unique();
$table->string('bab')->unique();
$table->string('hb')->unique();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('banks');
}
};