mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2025-01-03 23:30:10 +00:00
7 lines
262 B
SQL
7 lines
262 B
SQL
CREATE TABLE chat1_room_to_user ( roomID INT(10) NOT NULL
|
|
, userID INT(10) NOT NULL
|
|
|
|
, PRIMARY KEY (roomID, userID)
|
|
, KEY (userID)
|
|
);
|