]> git.donarmstrong.com Git - infobot.git/blob - setup/news.sql
- new tables. not used as yet.
[infobot.git] / setup / news.sql
1 CREATE TABLE news (
2         channel VARCHAR(16) NOT NULL,
3         id      INT UNSIGNED DEFAULT '0',
4         key     VARCHAR(16) NOT NULL,
5         value   TEXT NOT NULL,  # limit to ~450 or so.
6
7         PRIMARY KEY (channel,id,key)
8 );