commit 08-2025

This commit is contained in:
Kevin Adametz 2025-08-12 15:51:04 +02:00
parent 9b54eb0512
commit 02f2a4c23e
184 changed files with 31653 additions and 22327 deletions

View file

@ -48,11 +48,11 @@ class CreateShoppingOrdersTable extends Migration
$table->unsignedInteger('weight')->nullable();
$table->boolean('paid')->default(false);
$table->string('invoice_number', 255)->nullable();
$table->text('invoice')->nullable();
$table->text('delivery')->nullable();
$table->boolean('user_white_label')->default(false);
$table->string('wp_invoice_path', 255)->nullable();
$table->text('wp_notice')->nullable();

View file

@ -29,6 +29,9 @@ class CreateShoppingPaymentsTable extends Migration
$table->string('status', 10)->nullable()->index();
$table->string('txaction', 20)->nullable()->index();
$table->unsignedSmallInteger('reminder')->nullable();
$table->dateTime('reminder_date')->nullable();
$table->char('mode', 4)->nullable();
$table->timestamps();

View file

@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('payment_reminders', function (Blueprint $table) {
$table->increments('id');
$table->string('title')->nullable();
$table->string('subject')->nullable();
$table->unsignedSmallInteger('interval')->nullable();
$table->text('message')->nullable();
$table->string('action')->nullable();
$table->string('clearingtype', 3)->nullable();
$table->boolean('active')->default(true);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('payment_reminders');
}
};