increments('id'); $table->string('name', 250)->nullable(); $table->string('location', 250)->nullable(); $table->text('image')->nullable(); $table->integer('price')->nullable(); $table->text('description')->nullable(); $table->text('video')->nullable(); $table->integer('category_id')->nullable(); $table->integer('sub_category_id')->nullable(); $table->integer('status')->nullable(); $table->string('slug', 150)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('classifieds_classified_classifieds'); } }