mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-21 22:05:44 +00:00
8 lines
270 B
SQL
8 lines
270 B
SQL
-- Remove foreign key constraint
|
|
ALTER TABLE marketing_delivery_products
|
|
DROP CONSTRAINT IF EXISTS fk_marketing_delivery_products_product_warehouse;
|
|
|
|
-- Drop product_warehouse_id column
|
|
ALTER TABLE marketing_delivery_products
|
|
DROP COLUMN IF EXISTS product_warehouse_id;
|