increments('id'); $table->integer('brand_id')->nullable(); $table->integer('attribute_id')->nullable(); $table->integer('country_id')->nullable(); $table->integer('flights_id')->nullable(); $table->string('title', 225)->nullable(); $table->integer('stars')->nullable(); $table->string('booking_link', 80)->nullable(); $table->integer('duration')->nullable(); $table->increments('price')->nullable(); $table->enum('status', ['Online','Offline','Draft'])->nullable(); $table->enum('type', ['Hotels','Club travels','Cruises'])->nullable(); $table->increments('latitude')->nullable(); $table->increments('longitude')->nullable(); $table->text('details')->nullable(); $table->text('leisure_offers')->nullable(); $table->text('our_privileges')->nullable(); $table->text('images')->nullable(); $table->text('videos')->nullable(); $table->string('meta_title', 100)->nullable(); $table->text('meta_description')->nullable(); $table->string('meta_keywords', 100)->nullable(); $table->string('slug', 50)->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ships'); } }