aboutsummaryrefslogtreecommitdiffstats
path: root/install/database.sql
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-14 00:45:30 -0800
committerfriendica <info@friendica.com>2012-12-14 00:45:30 -0800
commitd39fb9b1d5208b18da364873d10f51e23b94bd7e (patch)
tree9c487ba79579c281a688a1a676ae9ace2c938689 /install/database.sql
parentecce0f0e211f069f4e0daf661755e89f7f32f020 (diff)
downloadvolse-hubzilla-d39fb9b1d5208b18da364873d10f51e23b94bd7e.tar.gz
volse-hubzilla-d39fb9b1d5208b18da364873d10f51e23b94bd7e.tar.bz2
volse-hubzilla-d39fb9b1d5208b18da364873d10f51e23b94bd7e.zip
converging on a workable crypto auth handshake
Diffstat (limited to 'install/database.sql')
-rw-r--r--install/database.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql
index 182d02432..574aaa38e 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -894,6 +894,21 @@ CREATE TABLE IF NOT EXISTS `tokens` (
KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+CREATE TABLE IF NOT EXISTS `verify` (
+ `id` int(10) unsigned NOT NULL,
+ `channel` int(10) unsigned NOT NULL DEFAULT '0',
+ `type` char(32) NOT NULL DEFAULT '',
+ `token` char(255) NOT NULL DEFAULT '',
+ `meta` char(255) NOT NULL DEFAULT '',
+ `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+ PRIMARY KEY (`id`),
+ KEY `channel` (`channel`),
+ KEY `type` (`type`),
+ KEY `token` (`token`),
+ KEY `meta` (`meta`),
+ KEY `created` (`created`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
CREATE TABLE IF NOT EXISTS `xchan` (
`xchan_hash` char(255) NOT NULL,
`xchan_guid` char(255) NOT NULL DEFAULT '',