7 lines
267 B
SQL
7 lines
267 B
SQL
CREATE TABLE IF NOT EXISTS conversation_participants (
|
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
conversation_id INT NOT NULL,
|
|
user_id INT NOT NULL,
|
|
FOREIGN KEY (conversation_id) REFERENCES conversations(id),
|
|
FOREIGN KEY (user_id) REFERENCES users(id)
|
|
); |