promoseven-group/database/migrations/2026_01_28_112055_create_vouchers_table.php
2026-01-29 15:55:10 +03:00

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');
}
};