dbfdg bigIncrements('id'); $table->integer('bill_id'); $table->integer('product_id'); $table->integer('quantity'); $table->string('tax', '50')->nullable(); $table->float('discount')->default('0.00'); $table->decimal('price', 16, 2)->default('0.0'); $table->text('description')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bill_products'); } }