diff options
author | Friendika <info@friendika.com> | 2011-10-15 03:26:37 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-15 03:26:37 -0700 |
commit | 5dcc10a5d9d2be79070716fbcaf5c054f7ed9efa (patch) | |
tree | 24fe6816289c5334c1e5c9ee895fc0bd1aff530e /database.sql | |
parent | af6ab381000346f487d1b5b07623510640dd7ee5 (diff) | |
download | volse-hubzilla-5dcc10a5d9d2be79070716fbcaf5c054f7ed9efa.tar.gz volse-hubzilla-5dcc10a5d9d2be79070716fbcaf5c054f7ed9efa.tar.bz2 volse-hubzilla-5dcc10a5d9d2be79070716fbcaf5c054f7ed9efa.zip |
working on long-term solution to relay issue
Diffstat (limited to 'database.sql')
-rw-r--r-- | database.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/database.sql b/database.sql index 2b9be34e0..c9e239075 100644 --- a/database.sql +++ b/database.sql @@ -214,6 +214,7 @@ CREATE TABLE IF NOT EXISTS `item` ( `bookmark` tinyint(1) NOT NULL DEFAULT '0', `unseen` tinyint(1) NOT NULL DEFAULT '1', `deleted` tinyint(1) NOT NULL DEFAULT '0', + `origin` tinyint(1) NOT NULL DEFAULT '0', `last-child` tinyint(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `guid` (`guid`), @@ -231,6 +232,7 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `visible` (`visible`), KEY `starred` (`starred`), KEY `deleted` (`deleted`), + KEY `origin` (`origin`), KEY `last-child` (`last-child`), KEY `unseen` (`unseen`), FULLTEXT KEY `title` (`title`), |