web-kursus2/database/migrations/2024_03_27_045051_create_coupons_table.php
2025-10-30 14:17:23 +07:00

32 lines
754 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('coupons', function (Blueprint $table) {
$table->id();
$table->integer('user_id', 255)->nullable();
$table->string('code', 255)->nullable();
$table->float('discount', 10, 2)->nullable();
$table->string('expiry', 255)->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('coupons');
}
};