]> git.donarmstrong.com Git - infobot.git/blob - blootbot/setup/sqlite2/news.sql
* Moved old /trunk/www out of trunk
[infobot.git] / blootbot / setup / sqlite2 / 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  PRIMARY KEY (channel,id,key)
7 );