Tims-Chat/sql/0003-chat1_room_to_user.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
262 B
MySQL
Raw Normal View History

2018-08-16 22:30:59 +00:00
CREATE TABLE chat1_room_to_user ( roomID INT(10) NOT NULL
, userID INT(10) NOT NULL
, PRIMARY KEY (roomID, userID)
, KEY (userID)
);