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