16 lines
324 B
SQL
16 lines
324 B
SQL
-- P5-5208: remove product collections
|
|
|
|
DROP TABLE collections_products;
|
|
DROP TABLE collections;
|
|
|
|
ALTER TABLE designers
|
|
DROP COLUMN productcollectionid;
|
|
|
|
ALTER TABLE "product-printprices"
|
|
DROP COLUMN collectionid;
|
|
|
|
ALTER TABLE "product-printproducts"
|
|
DROP COLUMN collectionid;
|
|
|
|
DROP TABLE "product-collections";
|