36 lines
937 B
PHP
36 lines
937 B
PHP
<?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('vouchers', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('code')->unique();
|
|
$table->string('name');
|
|
$table->text('description')->nullable();
|
|
$table->decimal('discount_amount', 10, 2)->nullable();
|
|
$table->integer('discount_percentage')->nullable();
|
|
$table->date('valid_from');
|
|
$table->date('valid_until');
|
|
$table->boolean('is_active')->default(true);
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('vouchers');
|
|
}
|
|
};
|