increments('id'); $table->string('name', 50)->nullable(); $table->date('release_date')->nullable(); $table->string('category_id', 50)->nullable(); $table->string('description', 5000)->nullable(); $table->text('image')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('galleries'); } }