mocha/sql/mysql/002-tables/mocha_attributes.sql
2023-11-11 20:28:45 -05:00

13 lines
257 B
SQL

DROP TABLE IF EXISTS mocha_attributes;
CREATE TABLE mocha_attributes
(
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
tenant_id INT,
src_inst_id INT,
att_inst_id INT,
usr_inst_id INT,
att_effective_date DATETIME,
att_value TEXT
);