increments('id'); $table->string('title', 255)->nullable(); $table->text('date')->nullable(); $table->text('address')->nullable(); $table->string('street', 255)->nullable(); $table->string('city', 255)->nullable(); $table->string('state', 255)->nullable(); $table->string('country', 255)->nullable(); $table->string('pincode', 255)->nullable(); $table->text('images')->nullable(); $table->text('description')->nullable(); $table->string('slug', 255)->nullable(); $table->enum('status', ['Show','Hide'])->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('events'); } }