CREATE TABLE ams_attribute_items (
attribute_id integer NOT NULL,
ams_attribute_id integer PRIMARY KEY NOT NULL,
widget varchar(100) NOT NULL,
dynamic_p bool DEFAULT false NOT NULL,
deprecated_p bool DEFAULT false NOT NULL,
help_text varchar(50),
CONSTRAINT ams_attribute_items_ams_attribute_id_fk REFERENCES acs_objects (),
CONSTRAINT ams_attribute_items_attribute_id_fk REFERENCES acs_attributes (),
CONSTRAINT ams_attribute_items_widget_fk REFERENCES ams_widgets ()
);
CREATE UNIQUE INDEX ams_attribute_items_attribute_id_key ON ams_attribute_items (attribute_id);
-- Table size: 8,192 bytes
-- Table rows: 4
Tables: