This commit is contained in:
friendica
2011-12-06 00:16:13 -08:00
parent 47f369e052
commit be8e9d3616
7 changed files with 115 additions and 11 deletions

View File

@@ -714,5 +714,11 @@ CREATE TABLE IF NOT EXISTS `conv` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`guid` CHAR( 64 ) NOT NULL ,
`recips` MEDIUMTEXT NOT NULL ,
`uid` INT NOT NULL
`uid` INT NOT NULL,
`creator` CHAR( 255 ) NOT NULL ,
`created` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`subject` MEDIUMTEXT NOT NULL,
INDEX ( `created` ),
INDEX ( `updated` )
) ENGINE = MyISAM DEFAULT CHARSET=utf8;