30 lines
839 B
PHP
30 lines
839 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('packages', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('name');
|
|
$table->integer('number_of_sessions');
|
|
$table->decimal('price', 15, 2);
|
|
$table->foreignId('currency_id')->constrained('currencies');
|
|
$table->integer('validity_days');
|
|
$table->text('description')->nullable();
|
|
$table->boolean('is_active')->default(true);
|
|
$table->timestamps();
|
|
$table->softDeletes();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('packages');
|
|
}
|
|
};
|