diff options
author | friendica <info@friendica.com> | 2013-07-24 21:23:20 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-24 21:23:20 -0700 |
commit | c975e51e8a7fd0870a394371c3463fe8665056d2 (patch) | |
tree | 72fe9c3a3858f219ac8aeeaf645f9f8c8d715623 /install/database.sql | |
parent | 9feeb218d06ec1fce0fbc38c4df8b7b87ef493c2 (diff) | |
download | volse-hubzilla-c975e51e8a7fd0870a394371c3463fe8665056d2.tar.gz volse-hubzilla-c975e51e8a7fd0870a394371c3463fe8665056d2.tar.bz2 volse-hubzilla-c975e51e8a7fd0870a394371c3463fe8665056d2.zip |
add chandesc field to profiles to provide some arbitrary text in the directory - such as to inform people what this channel is about before they connect. This will work best with a "channel detail" popup in the directory to provide more info than is available in the micro-profiles (when hovered, or clicked or something). And of course, the first thing is to enable this data to be stored in the directory.
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql index 1226f1cd1..e8b01d066 100644 --- a/install/database.sql +++ b/install/database.sql @@ -693,6 +693,7 @@ CREATE TABLE IF NOT EXISTS `profile` ( `hide_friends` tinyint(1) NOT NULL DEFAULT '0', `name` char(255) NOT NULL, `pdesc` char(255) NOT NULL, + `chandesc` text NOT NULL DEFAULT '', `dob` char(32) NOT NULL DEFAULT '0000-00-00', `dob_tz` char(255) NOT NULL DEFAULT 'UTC', `address` char(255) NOT NULL, |