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.
40 lines
1.1 KiB
40 lines
1.1 KiB
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateDiscountsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('discounts', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->date('start_date')->nullable();
|
|
$table->date('end_date')->nullable();
|
|
$table->time('start_time')->nullable();
|
|
$table->time('end_time')->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->foreignId('restaurant_id');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('discounts');
|
|
}
|
|
}
|
|
|