increments('id'); $table->string('title', 100)->nullable(); $table->text('descriptions')->nullable(); $table->string('image', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('galleries'); } }