Berater Register, Mitgliedschat live
https://dev.adametz.media:3000/cliquers/mivita.care/issues/3
This commit is contained in:
parent
21abafb8db
commit
1ada368ed4
43 changed files with 286 additions and 114 deletions
|
|
@ -50,6 +50,8 @@ class CreateUsersTable extends Migration
|
|||
$table->timestamp('payment_shop')->nullable();
|
||||
$table->boolean('abo_options')->default(false);
|
||||
|
||||
$table->boolean('test_mode')->default(false);
|
||||
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
|
|
|||
|
|
@ -36,6 +36,8 @@ class CreateShoppingOrdersTable extends Migration
|
|||
$table->boolean('paid')->default(false);
|
||||
$table->string('txaction', 20)->nullable()->index();
|
||||
|
||||
$table->char('mode', 4)->nullable();
|
||||
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@ class CreateShoppingPaymentsTable extends Migration
|
|||
$table->string('status', 10)->nullable()->index();
|
||||
$table->string('txaction', 20)->nullable()->index();
|
||||
|
||||
$table->char('mode', 4)->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
$table->foreign('shopping_order_id')
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ class CreatePaymentTransactionsTable extends Migration
|
|||
$table->string('errormessage')->nullable();
|
||||
$table->string('customermessage')->nullable();
|
||||
|
||||
$table->char('mode', 4)->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue