aboutsummaryrefslogtreecommitdiffstats
path: root/database.sql
diff options
context:
space:
mode:
authorroot <root@diekershoff.homeunix.net>2010-12-08 06:54:13 +0100
committerroot <root@diekershoff.homeunix.net>2010-12-08 06:54:13 +0100
commita96da925712184eec97f6ca01072b7c2bee92a7e (patch)
treec0a99dd7bbc6b479b040a8ef08cabee5f0f56e38 /database.sql
parentaf48dbec7f87a75a66f79887b6d2419b661e263d (diff)
parenta42b9ea3dea5e1490dd4aa4852760354d569ea51 (diff)
downloadvolse-hubzilla-a96da925712184eec97f6ca01072b7c2bee92a7e.tar.gz
volse-hubzilla-a96da925712184eec97f6ca01072b7c2bee92a7e.tar.bz2
volse-hubzilla-a96da925712184eec97f6ca01072b7c2bee92a7e.zip
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'database.sql')
-rw-r--r--database.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/database.sql b/database.sql
index be0671bb1..0b322e9e0 100644
--- a/database.sql
+++ b/database.sql
@@ -187,6 +187,7 @@ CREATE TABLE IF NOT EXISTS `item` (
`allow_gid` mediumtext NOT NULL,
`deny_cid` mediumtext NOT NULL,
`deny_gid` mediumtext NOT NULL,
+ `private` tinyint(1) NOT NULL DEFAULT '0',
`visible` tinyint(1) NOT NULL DEFAULT '0',
`unseen` tinyint(1) NOT NULL DEFAULT '1',
`deleted` tinyint(1) NOT NULL DEFAULT '0',
@@ -319,7 +320,9 @@ CREATE TABLE IF NOT EXISTS `profile` (
CREATE TABLE IF NOT EXISTS `profile_check` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL,
+ `cid` int(10) unsigned NOT NULL,
`dfrn_id` char(255) NOT NULL,
+ `sec` char(255) NOT NULL,
`expire` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;