Move charge to under service

This commit is contained in:
2024-07-25 14:08:26 +10:00
parent ddd44b643f
commit 743374cb17
17 changed files with 470 additions and 499 deletions

View File

@@ -22,9 +22,9 @@ return new class extends Migration
$table->boolean('processed')->default(false);
$table->integer('sweep_type')->nullable();
$table->integer('type')->nullable();
$table->float('amount', 10, 0)->nullable();
$table->float('quantity', 10, 0)->nullable();
$table->integer('type');
$table->float('amount', 10, 0);
$table->float('quantity', 10, 0);
$table->boolean('taxable')->default(true);
$table->jsonb('attributes')->nullable();
$table->string('description', 128)->nullable();