]> git.donarmstrong.com Git - infobot.git/blob - setup/news.sql
major re-organisation of the different SQL files; cleanup and fixing of the postgres...
[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  PRIMARY KEY (channel,id,key)
7 );