Fewo Mails / Booking Country Services

This commit is contained in:
Kevin Adametz 2020-05-28 19:03:42 +02:00
parent b9c26d06d0
commit 48a6eb2282
154 changed files with 7761 additions and 1643 deletions

View file

@ -8,7 +8,7 @@ use Illuminate\Database\Migrations\Migration;
* Migration auto-generated by Sequel Pro Laravel Export (1.4.1)
* @see https://github.com/cviebrock/sequel-pro-laravel-export
*/
class CreateTravelCountryTable extends Migration
class CreateSalutationTable extends Migration
{
/**
* Run the migrations.
@ -17,13 +17,18 @@ class CreateTravelCountryTable extends Migration
*/
public function up()
{
Schema::create('travel_country', function (Blueprint $table) {
Schema::create('salutation', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name', 255);
$table->tinyInteger('is_customer_country')->nullable()->default(false);
$table->boolean('active_backend')->nullable()->default(false);
});
}
/**
@ -33,6 +38,6 @@ class CreateTravelCountryTable extends Migration
*/
public function down()
{
Schema::dropIfExists('travel_country');
Schema::dropIfExists('salutation');
}
}