diff options
author | friendica <info@friendica.com> | 2013-07-14 01:12:05 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-14 01:12:05 -0700 |
commit | 39856f7cb1c15bd737d60581e0a54a061896f99d (patch) | |
tree | 993bf6a736ac63c477ce4d0533e2e14d33fd4da6 /install/database.sql | |
parent | df23bc9ad4511c1faab2efcf9a3558d81a8c2058 (diff) | |
download | volse-hubzilla-39856f7cb1c15bd737d60581e0a54a061896f99d.tar.gz volse-hubzilla-39856f7cb1c15bd737d60581e0a54a061896f99d.tar.bz2 volse-hubzilla-39856f7cb1c15bd737d60581e0a54a061896f99d.zip |
Add self to recipient lists. Sure we already have a copy but it's possible our nomadic channel clones don't.
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 59192b753..6b6f233b1 100644 --- a/install/database.sql +++ b/install/database.sql @@ -847,6 +847,7 @@ CREATE TABLE IF NOT EXISTS `term` ( `url` char(255) NOT NULL, `imgurl` char(255) NOT NULL, `term_hash` char(255) NOT NULL DEFAULT '', + `parent_hash` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`tid`), KEY `oid` (`oid`), KEY `otype` (`otype`), @@ -855,7 +856,8 @@ CREATE TABLE IF NOT EXISTS `term` ( KEY `uid` (`uid`), KEY `aid` (`aid`), KEY `imgurl` (`imgurl`), - KEY `term_hash` (`term_hash`) + KEY `term_hash` (`term_hash`), + KEY `parent_hash` (`parent_hash`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `tokens` ( |