Enable a DeltaTen module and profile page.
[platal.git] / upgrade / 1.1.0 / 10_deltaten.sql
1 DROP TABLE IF EXISTS profile_deltaten;
2 CREATE TABLE `profile_deltaten` (
3 `pid` int(11) unsigned NOT NULL DEFAULT '0',
4 `message` text NOT NULL,
5 PRIMARY KEY (`pid`),
6 CONSTRAINT FOREIGN KEY (`pid`) REFERENCES `profiles` (`pid`) ON DELETE CASCADE ON UPDATE CASCADE
7 ) ENGINE=InnoDB DEFAULT CHARSET=utf8