diff options
author | Friendika <info@friendika.com> | 2011-05-24 22:40:52 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-24 22:40:52 -0700 |
commit | 73b4faca5c7af506558eba6b7317d23551f1aefa (patch) | |
tree | 38b706c0cae1581531007e85f40085820fe87a7a /update.php | |
parent | eb152fdc24302ead9baf8e82d551084128162715 (diff) | |
download | volse-hubzilla-73b4faca5c7af506558eba6b7317d23551f1aefa.tar.gz volse-hubzilla-73b4faca5c7af506558eba6b7317d23551f1aefa.tar.bz2 volse-hubzilla-73b4faca5c7af506558eba6b7317d23551f1aefa.zip |
basic file upload/attach
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 603b93b63..cf2c763fd 100644 --- a/update.php +++ b/update.php @@ -486,4 +486,9 @@ function update_1054() { function update_1055() { q("ALTER TABLE `profile` ADD `hidewall` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `hide-friends` "); -}
\ No newline at end of file +} + +function update_1056() { + q("ALTER TABLE `attach` ADD `hash` CHAR( 64 ) NOT NULL AFTER `uid` "); +} + |