diff options
author | friendica <info@friendica.com> | 2013-06-20 18:36:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-06-20 18:36:02 -0700 |
commit | 61601dc23d3e8305720bfc4e4e6b6dbd7b85f546 (patch) | |
tree | 63d9e661fdeb1bbf83e6ec19187b852657383191 /install/database.sql | |
parent | dd9d32bcb3dc8ab8a4cf0c9658f01dfba24f7db4 (diff) | |
download | volse-hubzilla-61601dc23d3e8305720bfc4e4e6b6dbd7b85f546.tar.gz volse-hubzilla-61601dc23d3e8305720bfc4e4e6b6dbd7b85f546.tar.bz2 volse-hubzilla-61601dc23d3e8305720bfc4e4e6b6dbd7b85f546.zip |
Add site registration policy to site record. This is not yet used or stored, but potentially can be exchanged through directory mirrors to automatically create "open site" lists.
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql index 9964e98ea..056124649 100644 --- a/install/database.sql +++ b/install/database.sql @@ -797,10 +797,12 @@ CREATE TABLE IF NOT EXISTS `site` ( `site_flags` int(11) NOT NULL DEFAULT '0', `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', PRIMARY KEY (`site_url`), KEY `site_flags` (`site_flags`), KEY `site_update` (`site_update`), - KEY `site_directory` (`site_directory`) + KEY `site_directory` (`site_directory`), + KEY `site_register` (`site_register`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `spam` ( |