increments('id'); $table->string('title', 250)->nullable(); $table->text('details')->nullable(); $table->longText('images')->nullable(); $table->string('link', 100)->nullable(); $table->text('video_url')->nullable(); $table->string('slug', 200)->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'); } }