diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/update.php b/update.php index e01bafb90..a39450579 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -function update_1001() { +function update_1000() { q("ALTER TABLE `item` DROP `like`, DROP `dislike` "); @@ -12,4 +12,8 @@ function update_1001() { 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 +} + +function update_1001() { + q("ALTER TABLE `item` ADD `wall` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `type` "); +} |