diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/update.php b/update.php new file mode 100644 index 000000000..e01bafb90 --- /dev/null +++ b/update.php @@ -0,0 +1,15 @@ +<?php + +function update_1001() { + + q("ALTER TABLE `item` DROP `like`, DROP `dislike` "); + + q("ALTER TABLE `item` ADD `verb` CHAR( 255 ) NOT NULL AFTER `body` , + ADD `object-type` CHAR( 255 ) NOT NULL AFTER `verb` , + ADD `object` TEXT NOT NULL AFTER `object-type` "); + + q("ALTER TABLE `intro` ADD `duplex` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `knowyou` "); + q("ALTER TABLE `contact` ADD `duplex` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `rel` "); + q("ALTER TABLE `contact` CHANGE `issued-pubkey` `issued-pubkey` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL"); + q("ALTER TABLE `contact` ADD `term-date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `avatar-date`"); +}
\ No newline at end of file |