You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateCouponsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('coupons', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('title',100)->nullable();
|
|
$table->string('code',15)->nullable();
|
|
$table->date('start_date')->nullable();
|
|
$table->date('expire_date')->nullable();
|
|
$table->decimal('min_purchase')->default(0);
|
|
$table->decimal('max_discount')->default(0);
|
|
$table->decimal('discount')->default(0);
|
|
$table->string('discount_type',15)->default('percentage');
|
|
$table->string('coupon_type')->default('default');
|
|
$table->integer('limit')->nullable();
|
|
$table->boolean('status')->default(1);
|
|
$table->foreignId('restaurant_id');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('coupons');
|
|
}
|
|
}
|
|
|