Passolution
This commit is contained in:
parent
f79806ffe8
commit
06fc3ba919
31 changed files with 337 additions and 119 deletions
|
|
@ -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->unsignedInteger('nationality_id')->nullable();
|
||||
$table->string('ev_number', 255)->nullable();
|
||||
$table->string('merlin_knr', 255)->nullable();
|
||||
$table->string('merlin_order_number', 255)->nullable();
|
||||
|
|
|
|||
|
|
@ -25,6 +25,8 @@ class CreateParticipantTable extends Migration
|
|||
$table->date('participant_birthdate')->nullable();
|
||||
$table->bigInteger('participant_salutation_id')->nullable();
|
||||
$table->tinyInteger('participant_child')->nullable()->default(0);
|
||||
$table->unsignedInteger('nationality_id')->nullable();
|
||||
|
||||
|
||||
$table->index('booking_id', 'participant_booking_id_idx');
|
||||
$table->index('participant_salutation_id', 'participant_participant_salutation_id_idx');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue