Tims-Chat/sql/0001-chat1_room.sql

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

6 lines
282 B
MySQL
Raw Normal View History

2018-08-16 22:30:59 +00:00
CREATE TABLE chat1_room ( roomID INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY
, title VARCHAR(255) NOT NULL
, topic VARCHAR(255) NOT NULL
, position SMALLINT(5) NOT NULL
);