Reiseland Kontaktdaten, Rabatt API

This commit is contained in:
Kevin Adametz 2019-11-07 17:08:16 +01:00
parent 8f29c15a2b
commit 70704be1ea
30 changed files with 471 additions and 95 deletions

View file

@ -18,6 +18,7 @@ class CreateDraftTypesTable extends Migration
$table->string('name');
$table->string('color', 10)->nullable();
$table->boolean('active')->default(true);
$table->unsignedTinyInteger('pos')->default(0);
$table->timestamps();
});

View file

@ -27,6 +27,7 @@ class CreateTravelCountryTable extends Migration
$table->string('text_before')->nullable();
$table->string('text_after')->nullable();
$table->string('contact_lands')->nullable();
$table->string('contact_headline')->nullable();
$table->text('contact_text_1')->nullable();
$table->text('contact_text_2')->nullable();