API Shopping Order backend

This commit is contained in:
Kevin Adametz 2022-07-15 21:21:56 +02:00
parent 7a040c3e19
commit d01b4bd560
24 changed files with 1584 additions and 34 deletions

View file

@ -45,14 +45,14 @@ class CreateShoppingOrdersTable extends Migration
$table->boolean('paid')->default(false);
$table->string('wp_invoice_path', 255)->nullable();
$table->text('wp_notice')->nullable();
$table->string('txaction', 20)->nullable()->index();
$table->text('api_notice')->nullable();
$table->unsignedTinyInteger('api_status')->nullable();
$table->unsignedTinyInteger('shipped')->default(0);
$table->string('txaction', 20)->nullable()->index();
$table->string('tracking', 255)->nullable();
$table->char('mode', 4)->nullable();
$table->timestamps();