increments('id'); $table->integer('buyer_id')->nullable(); $table->integer('product_id')->nullable(); $table->enum('status', ['Pending','Open','Closed'])->nullable(); $table->text('details')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('quotes'); } }