aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-09-09 18:49:19 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-09-09 18:49:19 -0700
commit82986cc993133dbe7b9bbc966539ae188b070215 (patch)
tree51b6d4e0fc746f6209fd178dbb97922f0c7badc9 /update.php
parentbbc0200661e6e885e0a0146cf6fcb7461e4649ad (diff)
downloadvolse-hubzilla-82986cc993133dbe7b9bbc966539ae188b070215.tar.gz
volse-hubzilla-82986cc993133dbe7b9bbc966539ae188b070215.tar.bz2
volse-hubzilla-82986cc993133dbe7b9bbc966539ae188b070215.zip
fixes
Diffstat (limited to 'update.php')
-rw-r--r--update.php8
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` ");
+}