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