WIP on CArd Orders

This commit is contained in:
2023-12-11 17:29:50 +05:00
parent 63e264805a
commit ee4d71cff0
14 changed files with 632 additions and 7 deletions

View File

@@ -15,6 +15,8 @@ return new class extends Migration
$table->id();
$table->jsonb('name');
$table->string('price')->nullable();
$table->string('notes')->nullable();
$table->boolean('active')->default(true);
$table->timestamps();
});
}

View File

@@ -15,6 +15,8 @@ return new class extends Migration
$table->id();
$table->jsonb('name');
$table->string('price')->nullable();
$table->string('notes')->nullable();
$table->boolean('active')->default(true);
$table->timestamps();
});
}