diff options
author | friendica <info@friendica.com> | 2013-09-17 22:27:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-17 22:27:51 -0700 |
commit | d3aa31be4d84764e4d119343d8bc5eba5a84272b (patch) | |
tree | 68522f122490ecf1971c9f2ebff1c8340466cb7f /install | |
parent | ff2ada207a7c90f095d1fad1513440eb08d3840a (diff) | |
download | volse-hubzilla-d3aa31be4d84764e4d119343d8bc5eba5a84272b.tar.gz volse-hubzilla-d3aa31be4d84764e4d119343d8bc5eba5a84272b.tar.bz2 volse-hubzilla-d3aa31be4d84764e4d119343d8bc5eba5a84272b.zip |
site sellpage links
Diffstat (limited to 'install')
-rw-r--r-- | install/database.sql | 4 | ||||
-rw-r--r-- | install/update.php | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/install/database.sql b/install/database.sql index 41fb968c8..2e420fcbd 100644 --- a/install/database.sql +++ b/install/database.sql @@ -825,12 +825,14 @@ CREATE TABLE IF NOT EXISTS `site` ( `site_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `site_directory` char(255) NOT NULL DEFAULT '', `site_register` int(11) NOT NULL DEFAULT '0', + `site_sellpage` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`site_url`), KEY `site_access` (`site_access`), KEY `site_flags` (`site_flags`), KEY `site_update` (`site_update`), KEY `site_directory` (`site_directory`), - KEY `site_register` (`site_register`) + KEY `site_register` (`site_register`), + KEY `site_sellpage` (`site_sellpage`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `spam` ( diff --git a/install/update.php b/install/update.php index 24aed374d..3c40ee0c5 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1069 ); +define( 'UPDATE_VERSION' , 1070 ); /** * @@ -789,3 +789,11 @@ function update_r1068(){ return UPDATE_FAILED; } +function update_r1069() { + $r = q("ALTER TABLE `site` ADD `site_sellpage` CHAR( 255 ) NOT NULL DEFAULT '', +ADD INDEX ( `site_sellpage` )"); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} + |