increments('id'); $table->integer('buyer_id')->nullable(); $table->integer('product_id')->nullable(); $table->float('custom_price')->nullable(); $table->integer('supplier_id')->nullable(); $table->string('slug', 60)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('customprices'); } }