Fix: \n 1. Rename database to demo \n 2. Improve card styles for ERP Admin pages
This commit is contained in:
@@ -10,12 +10,12 @@ CREATE TABLE Shop_Variation (
|
||||
, id_type INT NOT NULL
|
||||
, CONSTRAINT FK_Shop_Variation_id_type
|
||||
FOREIGN KEY (id_type)
|
||||
REFERENCES partsltd_prod.Shop_Variation_Type(id_type)
|
||||
REFERENCES demo.Shop_Variation_Type(id_type)
|
||||
ON UPDATE RESTRICT
|
||||
, id_unit_measurement INT NULL
|
||||
, CONSTRAINT FK_Shop_Unit_Measurement_id_unit_measurement
|
||||
FOREIGN KEY (id_unit_measurement)
|
||||
REFERENCES partsltd_prod.Shop_Unit_Measurement(id_unit_measurement)
|
||||
REFERENCES demo.Shop_Unit_Measurement(id_unit_measurement)
|
||||
, count_unit_measurement INT NULL
|
||||
, code VARCHAR(50)
|
||||
, name VARCHAR(255)
|
||||
@@ -26,5 +26,5 @@ CREATE TABLE Shop_Variation (
|
||||
, id_change_set INT
|
||||
, CONSTRAINT FK_Shop_Variation_id_change_set
|
||||
FOREIGN KEY (id_change_set)
|
||||
REFERENCES partsltd_prod.Shop_Product_Change_Set(id_change_set)
|
||||
REFERENCES demo.Shop_Product_Change_Set(id_change_set)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user