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,43 @@
<?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::dropIfExists('user_companies');
Schema::create('user_companies', function (Blueprint $table) {
$table->id();
$table->string('company_type')
->nullable()
->comment('types: tel, hk, hj');
$table->string('ssb')
->nullable()
->comment('Şahsy salgyt belgisi');
$table->string('hb')
->nullable();
$table->foreignId('bank_id')->nullable()->constrained('banks')->nullOnDelete();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('user_companies');
}
};