diff options
author | friendica <info@friendica.com> | 2013-10-30 01:58:45 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-30 01:58:45 -0700 |
commit | 2035a5dd763f7524cdc1a678b0e8dbca94f270f5 (patch) | |
tree | 5109b71ad33146e6f99ef79aaca3a9c7844b3cd6 /install | |
parent | 8da4da37ccbcc6921f97eeb0c9cd3c23567bd761 (diff) | |
download | volse-hubzilla-2035a5dd763f7524cdc1a678b0e8dbca94f270f5.tar.gz volse-hubzilla-2035a5dd763f7524cdc1a678b0e8dbca94f270f5.tar.bz2 volse-hubzilla-2035a5dd763f7524cdc1a678b0e8dbca94f270f5.zip |
allow zot public providers to list their location, as a non US-based server could be a strong selling point.
Diffstat (limited to 'install')
-rw-r--r-- | install/database.sql | 1 | ||||
-rw-r--r-- | install/update.php | 9 |
2 files changed, 9 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql index b482c3376..879c7f132 100644 --- a/install/database.sql +++ b/install/database.sql @@ -832,6 +832,7 @@ CREATE TABLE IF NOT EXISTS `site` ( `site_directory` char(255) NOT NULL DEFAULT '', `site_register` int(11) NOT NULL DEFAULT '0', `site_sellpage` char(255) NOT NULL DEFAULT '', + `site_location` char(255 NOT NULL DEFAULT '', PRIMARY KEY (`site_url`), KEY `site_access` (`site_access`), KEY `site_flags` (`site_flags`), diff --git a/install/update.php b/install/update.php index 07a773f68..53d487f91 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1079 ); +define( 'UPDATE_VERSION' , 1080 ); /** * @@ -881,3 +881,10 @@ function update_r1078() { return UPDATE_SUCCESS; return UPDATE_FAILED; } + +function update_r1079() { + $r = q("ALTER TABLE `site` ADD `site_location` CHAR( 255 ) NOT NULL DEFAULT ''"); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |