Fix: \n 1. Rename database to demo \n 2. Improve card styles for ERP Admin pages

This commit is contained in:
2025-03-21 16:09:42 +00:00
parent 85a3ec4c9f
commit 5c54c23798
95 changed files with 2576 additions and 24368 deletions

View File

@@ -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)
);