]> git.mxchange.org Git - friendica.git/blob - util/fixme.sql
i18n strings update
[friendica.git] / util / fixme.sql
1 -- Run this with mysql or import into phpmyadmin if you installed mistpark between Sep22 and Oct 6 2010.
2 -- The database schema was missing some updates
3
4 ALTER TABLE `item` DROP `like`, DROP `dislike` ;
5
6 ALTER TABLE `item` ADD `verb` CHAR( 255 ) NOT NULL AFTER `body` ,
7                 ADD `object-type` CHAR( 255 ) NOT NULL AFTER `verb` ,
8                 ADD `object` TEXT NOT NULL AFTER `object-type` ;
9
10 ALTER TABLE `intro` ADD `duplex` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `knowyou` ;
11 ALTER TABLE `contact` ADD `duplex` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `rel` ;
12 ALTER TABLE `contact` ADD `term-date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `avatar-date`;
13