Base de donnée prefs

This commit is contained in:
Damien LASSERRE 2012-01-06 11:11:33 +00:00
parent 44782c7991
commit f3908a3888

View File

@ -1,4 +1,5 @@
CREATE TABLE prefs ( CREATE TABLE IF NOT EXISTS `prefs` (
login varchar(255) primary key, `login` varchar(255) NOT NULL,
json text not null `json` text NOT NULL,
); PRIMARY KEY (`login`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;