Fewo Mail MA, optimation Fewo, view User Fewos

This commit is contained in:
Kevin Adametz 2019-05-08 14:05:35 +02:00
parent e537e47a82
commit 346a7427a5
30 changed files with 915 additions and 963 deletions

View file

@ -22,6 +22,7 @@ class CreateFewoLodgingTable extends Migration
$table->integer('group_id')->nullable();
$table->integer('type_id')->nullable();
$table->string('name', 255);
$table->string('single_name', 255);
$table->longText('description');
$table->longText('equipment');
$table->string('adress1', 255);

View file

@ -33,9 +33,11 @@ class CreateTravelUserBookingFewosTable extends Migration
$table->text('daily_prices')->nullable();
$table->decimal('price_travel', 13, 2)->nullable();
$table->decimal('price_balance', 13, 2)->nullable();
$table->decimal('price_extra', 13, 2)->nullable();
$table->decimal('price_travel_total', 13, 2)->nullable();
$table->decimal('price_deposit', 8, 2)->nullable();
$table->decimal('price_service', 8, 2)->nullable();
$table->decimal('price_balance', 8, 2)->nullable();
$table->decimal('price_total', 13, 2)->nullable();
@ -53,8 +55,9 @@ class CreateTravelUserBookingFewosTable extends Migration
$table->text('send_user_mail')->nullable();
$table->text('send_service_mail')->nullable();
$table->text('info_mail_text')->nullable();
$table->text('send_employee_mail')->nullable();
$table->text('send_info_mail')->nullable();
$table->text('info_mail_text')->nullable();
$table->timestamps();
$table->softDeletes();