mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
6 lines
324 B
MySQL
6 lines
324 B
MySQL
|
ALTER TABLE chat1_room_to_user ADD lastFetch INT(10) NOT NULL DEFAULT 0;
|
||
|
ALTER TABLE chat1_room_to_user ADD lastPush INT(10) NOT NULL DEFAULT 0;
|
||
|
ALTER TABLE chat1_room_to_user ADD active TINYINT(1) NOT NULL DEFAULT 0;
|
||
|
ALTER TABLE chat1_room_to_user ADD KEY (roomID, active);
|
||
|
ALTER TABLE chat1_room_to_user ADD KEY (active);
|