create table special_cake ( id integer primary key autoincrement, customer_order integer not null references customer_order(id) on delete cascade, name text not null, price integer not null, size text not null default '', shape text not null default '', flavour text not null default '', notes text not null default '' );