bigIncrements('id'); $table->string('name', 255); $table->string('mail_dir_name', 255)->nullable(); $table->tinyInteger('is_customer_country')->nullable()->default(0); $table->tinyInteger('active_backend')->nullable()->default(0); $table->string('contact_lands', 255)->nullable(); $table->string('mail_dirs', 255)->nullable(); $table->string('contact_headline', 255)->nullable(); $table->text('contact_text_1')->nullable(); $table->text('contact_text_2')->nullable(); $table->text('contact_text_3')->nullable(); $table->text('contact_text_4')->nullable(); $table->text('contact_footer')->nullable(); $table->text('contact_emails')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('travel_country'); } }