increments('id'); $table->string('title', 255)->nullable(); $table->string('nr', 200)->nullable(); $table->string('request_code', 50)->nullable(); $table->integer('length')->nullable(); $table->string('style', 50)->nullable(); $table->string('style_name', 255)->nullable(); $table->text('page_url')->nullable(); $table->text('trip_kind_description')->nullable(); $table->string('dates_title', 225)->nullable(); $table->string('date_remark', 255)->nullable(); $table->text('description')->nullable(); $table->string('teaser_text', 225)->nullable(); $table->integer('base_price')->nullable(); $table->integer('baseprice_flight')->nullable(); $table->text('extra_styles')->nullable(); $table->text('highlights')->nullable(); $table->text('countries')->nullable(); $table->text('trip_days')->nullable(); $table->text('dates')->nullable(); $table->text('transportation')->nullable(); $table->text('participants')->nullable(); $table->text('features')->nullable(); $table->text('images')->nullable(); $table->text('json')->nullable(); $table->text('slug')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 225)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('tigges'); } }