CREATE TABLE acs_attribute_descriptions (
object_type varchar(1000) NOT NULL,
attribute_name varchar(100) NOT NULL,
description_key varchar(100) NOT NULL,
description text(-5) NOT NULL,
PRIMARY KEY (object_type,attribute_name,description_key),
CONSTRAINT acs_attr_descs_ob_tp_at_na_fk REFERENCES acs_attributes (),
CONSTRAINT acs_attr_descs_obj_type_fk REFERENCES acs_attributes (),
CONSTRAINT acs_attribute_descriptions_pk REFERENCES acs_attributes (),
CONSTRAINT acs_attribute_descriptions_pk REFERENCES acs_object_types (),
CONSTRAINT acs_attr_descs_ob_tp_at_na_fk REFERENCES acs_object_types (),
CONSTRAINT acs_attr_descs_obj_type_fk REFERENCES acs_object_types ()
);
CREATE INDEX acs_attr_desc_attr_name_idx ON acs_attribute_descriptions (attribute_name);
CREATE INDEX acs_attr_desc_obj_type_idx ON acs_attribute_descriptions (object_type);
CREATE TRIGGER RI_ConstraintTrigger_c_340259 AFTER INSERT FOR EACH ROW EXECUTE PROCEDURE RI_FKey_check_ins (disabled)
CREATE TRIGGER RI_ConstraintTrigger_c_340260 AFTER UPDATE FOR EACH ROW EXECUTE PROCEDURE RI_FKey_check_upd (disabled)
CREATE TRIGGER RI_ConstraintTrigger_c_1610551 AFTER INSERT FOR EACH ROW EXECUTE PROCEDURE RI_FKey_check_ins (disabled)
CREATE TRIGGER RI_ConstraintTrigger_c_1610552 AFTER UPDATE FOR EACH ROW EXECUTE PROCEDURE RI_FKey_check_upd (disabled)
-- Table size: 0 bytes
-- Table rows: 0
Tables: