mocha/sql/mysql/002-tables/mocha_attributes.sql
2023-10-31 11:47:27 -04:00

12 lines
238 B
SQL

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