bigIncrements('id'); $table->string('name', 255); $table->tinyInteger('is_customer_country')->nullable()->default(false); $table->boolean('active_backend')->nullable()->default(false); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('travel_country'); } }