dbfdg bigIncrements('id'); $table->string('name'); $table->string('code'); $table->float('discount')->default('0.00'); $table->integer('limit')->default('0'); $table->text('description')->nullable(); $table->integer('is_active')->default('1'); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('coupons'); } }