removed cake categories

This commit is contained in:
bronku 2026-06-11 01:13:42 +02:00
parent b3a5c0b19e
commit d382de4236
10 changed files with 12 additions and 106 deletions

View file

@ -1,9 +1,7 @@
create table cake (
id integer primary key autoincrement,
name text not null unique,
price integer not null,
category text,
availability text
price integer not null
);
create table customer_order (