diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-08-19 04:59:31 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-08-19 04:59:31 -0700 |
commit | e0045a43e22082e0a47fd57288105a21311e911a (patch) | |
tree | d20f36060be22a5c83526ca2a3654f1e4a31ace0 /database.sql | |
parent | 6ed5b642a437a86077093391f3f2ec9889068d8d (diff) | |
download | volse-hubzilla-e0045a43e22082e0a47fd57288105a21311e911a.tar.gz volse-hubzilla-e0045a43e22082e0a47fd57288105a21311e911a.tar.bz2 volse-hubzilla-e0045a43e22082e0a47fd57288105a21311e911a.zip |
mongo checkin, global directory, redir rework, location basics
Diffstat (limited to 'database.sql')
-rw-r--r-- | database.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/database.sql b/database.sql index 886c4b3b6..1809f4703 100644 --- a/database.sql +++ b/database.sql @@ -264,7 +264,7 @@ CREATE TABLE IF NOT EXISTS `profile` ( `region` char(255) NOT NULL, `postal-code` char(32) NOT NULL, `country-name` char(255) NOT NULL, - `gender` char(8) NOT NULL, + `gender` char(32) NOT NULL, `marital` char(255) NOT NULL, `sexual` char(255) NOT NULL, `politic` char(255) NOT NULL, @@ -284,6 +284,7 @@ CREATE TABLE IF NOT EXISTS `profile` ( `photo` char(255) NOT NULL, `thumb` char(255) NOT NULL, `publish` tinyint(1) NOT NULL DEFAULT '0', + `net-publish` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |