Channel-Poll-Bot/schema.sql

3 lines
127 B
MySQL
Raw Normal View History

2019-01-06 18:17:49 +01:00
CREATE TABLE IF NOT EXISTS poll(callback int NOT NULL, user_id int, UNIQUE(callback, user_id));
INSERT INTO poll values(0, 0);