On 01/01/2011 19:49, vwu98...@lycos.com wrote:
I need to update the database schema to add a new table based on an
original table. The existing table is the following:
create table shop_image ( idSERIAL UNIQUE primary
key, shop_fk
int references vsm_shop (id) on dele
I need to update the database schema to add a new table based on an original
table. The existing table is the following:
create table shop_image (
id SERIAL UNIQUE primary key,
shop_fk int references vsm_shop (id) on delete cascade,
pa