27 lines
719 B
PHP
27 lines
719 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
Schema::create('currencies', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('code', 3)->unique(); // USD, EUR, BHD
|
|
$table->string('name');
|
|
$table->string('symbol', 10)->nullable();
|
|
$table->integer('decimal_places')->default(2);
|
|
$table->boolean('is_active')->default(true);
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('currencies');
|
|
}
|
|
};
|