This commit is contained in:
2024-01-28 17:29:39 +05:00
parent 2dc812711e
commit 0a631aec80
18 changed files with 321 additions and 49 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('api_key_halkbank', function (Blueprint $table) {
$table->id();
$table->string('order_number');
$table->string('billing_username');
$table->string('billing_password');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('api_key_for_halkbank');
}
};