45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
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.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('discounts', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('name');
|
|
$table->integer('business_id');
|
|
$table->integer('brand_id')->nullable();
|
|
$table->integer('category_id')->nullable();
|
|
$table->integer('location_id')->nullable();
|
|
$table->integer('priority')->nullable();
|
|
$table->string('discount_type')->nullable();
|
|
$table->decimal('discount_amount', 22, 4)->default(0);
|
|
$table->dateTime('starts_at')->nullable();
|
|
$table->dateTime('ends_at')->nullable();
|
|
$table->boolean('is_active')->default(1);
|
|
$table->boolean('applicable_in_spg')->default(0)->nullable();
|
|
$table->boolean('applicable_in_cg')->default(0)->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('discounts');
|
|
}
|
|
};
|