increments('id'); $table->integer('classified_id')->nullable(); $table->string('name', 150)->nullable(); $table->string('email', 150)->nullable(); $table->text('query')->nullable(); $table->text('reply')->nullable(); $table->integer('status')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('classifieds_enquiry_enquiries'); } }