Mehrere Tickets 49, 50, 51, 52, 53
This commit is contained in:
parent
ae70577289
commit
e3495be8b8
61 changed files with 1904 additions and 344 deletions
|
|
@ -38,6 +38,7 @@ class CreateTravelCountryTable extends Migration
|
|||
$table->text('contact_text_3')->nullable();
|
||||
$table->text('contact_text_4')->nullable();
|
||||
$table->text('contact_footer')->nullable();
|
||||
$table->text('visum_text')->nullable();
|
||||
|
||||
$table->text('entry_requirements')->nullable(); //need?
|
||||
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ class CreateBookingTable extends Migration
|
|||
$table->string('participant_firstname', 255)->nullable();
|
||||
$table->date('participant_birthdate')->nullable();
|
||||
$table->bigInteger('participant_salutation_id')->nullable();
|
||||
$table->tinyInteger('participant_pass')->nullable()->default(0);
|
||||
$table->unsignedInteger('nationality_id')->nullable();
|
||||
$table->string('ev_number', 255)->nullable();
|
||||
$table->string('merlin_knr', 255)->nullable();
|
||||
|
|
@ -58,6 +59,7 @@ class CreateBookingTable extends Migration
|
|||
$table->tinyInteger('paying_out')->nullable()->default(0);
|
||||
$table->tinyInteger('paying_out_status')->nullable()->default(0);
|
||||
$table->unsignedBigInteger('airline_id')->nullable();
|
||||
$table->string('airline_ids', 255)->nullable();
|
||||
$table->tinyInteger('refund')->nullable()->default(0);
|
||||
$table->date('refund_date')->nullable();
|
||||
$table->date('lawyer_date')->nullable();
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ class CreateParticipantTable extends Migration
|
|||
$table->date('participant_birthdate')->nullable();
|
||||
$table->bigInteger('participant_salutation_id')->nullable();
|
||||
$table->tinyInteger('participant_child')->nullable()->default(0);
|
||||
$table->tinyInteger('participant_pass')->nullable()->default(0);
|
||||
$table->unsignedInteger('nationality_id')->nullable();
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,9 @@ class CreateAirlinesTable extends Migration
|
|||
$table->string('name', 255);
|
||||
$table->string('name_full', 255);
|
||||
$table->text('contact_emails')->nullable();
|
||||
|
||||
$table->text('flight_info')->nullable();
|
||||
$table->text('check_in')->nullable();
|
||||
$table->text('baggage')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ class CreateTravelCountryTable extends Migration
|
|||
$table->text('contact_text_4')->nullable();
|
||||
$table->text('contact_footer')->nullable();
|
||||
$table->text('contact_emails')->nullable();
|
||||
|
||||
$table->text('visum_text')->nullable();
|
||||
});
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue