increments('id'); $table->string('title', 250)->nullable(); $table->text('image')->nullable(); $table->longText('images')->nullable(); $table->string('slug', 200)->nullable(); $table->enum('published', ['Yes','No'])->nullable(); $table->enum('status', ['show','hide'])->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 200)->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('galleries'); } }