Custom Price / Land / User Order Homeparty

This commit is contained in:
Kevin Adametz 2021-08-20 18:22:21 +02:00
parent d46824a4ac
commit 51d81d8ec6
55 changed files with 1951 additions and 681 deletions

View file

@ -23,16 +23,18 @@ class CreateHomepartiesTable extends Migration
$table->unsignedTinyInteger('pos')->default(0);
$table->unsignedTinyInteger('completed')->default(0);
$table->unsignedTinyInteger('status')->default(0);
$table->unsignedTinyInteger('step')->default(0);
$table->boolean('order_to')->default(true);
$table->boolean('active')->default(false);
$table->boolean('default')->default(false);
$table->string('token')->nullable();
$table->boolean('token_active')->default(true);
$table->text('settings')->nullable();
$table->text('order')->nullable();
$table->string('card_info')->nullable();
$table->timestamps();
});