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