13 lines
281 B
SQL
13 lines
281 B
SQL
DROP TABLE IF EXISTS mocha_relationships;
|
|
|
|
CREATE TABLE mocha_relationships
|
|
(
|
|
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
tenant_id INT,
|
|
source_inst_id INT,
|
|
relationship_inst_id INT,
|
|
destination_inst_id INT,
|
|
user_inst_id INT,
|
|
effective_date DATETIME
|
|
);
|