last from 01 2019
This commit is contained in:
parent
f9fcaac838
commit
ed80b25b85
19 changed files with 626 additions and 341 deletions
|
|
@ -27,6 +27,9 @@ class CreateDraftItemsTable extends Migration
|
|||
$table->decimal('price_children', 8, 2)->nullable();
|
||||
$table->tinyInteger('children')->unsigned()->nullable();
|
||||
|
||||
$table->decimal('price', 8, 2)->nullable();
|
||||
|
||||
|
||||
$table->tinyInteger('pos')->unsigned()->nullable();
|
||||
$table->boolean('in_pdf')->default(true);
|
||||
$table->boolean('active')->default(true);
|
||||
|
|
|
|||
|
|
@ -39,6 +39,8 @@ class CreateBookingDraftItemsTable extends Migration
|
|||
$table->decimal('price_children', 8, 2)->nullable();
|
||||
$table->tinyInteger('children')->unsigned()->nullable();
|
||||
|
||||
$table->decimal('price', 8, 2)->nullable();
|
||||
|
||||
$table->tinyInteger('pos')->unsigned()->nullable();
|
||||
$table->boolean('in_pdf')->default(true);
|
||||
$table->boolean('status')->default(false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue