diff options
author | Thomas Willingham <founder@kakste.com> | 2013-01-02 11:40:17 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-01-02 11:40:17 +0000 |
commit | 577236c372b4eaa1e93d60d7bedaecea8ef8c97f (patch) | |
tree | e9c38e309a8edcb72e25f17e751eeb6bac3feea0 /install/database.sql | |
parent | 2fd0653d6ff3c60920946f83d249c8763dcad4a8 (diff) | |
parent | 4108598133eae97e7c8a0b8e13ead4856f423cff (diff) | |
download | volse-hubzilla-577236c372b4eaa1e93d60d7bedaecea8ef8c97f.tar.gz volse-hubzilla-577236c372b4eaa1e93d60d7bedaecea8ef8c97f.tar.bz2 volse-hubzilla-577236c372b4eaa1e93d60d7bedaecea8ef8c97f.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql index 6876514f2..5a17346e1 100644 --- a/install/database.sql +++ b/install/database.sql @@ -846,6 +846,17 @@ CREATE TABLE IF NOT EXISTS `xchan` ( KEY `xchan_connurl` (`xchan_connurl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +CREATE TABLE IF NOT EXISTS `xlink` ( + `xlink_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `xlink_xchan` char(255) NOT NULL DEFAULT '', + `xlink_link` char(255) NOT NULL DEFAULT '', + `xlink_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`xlink_id`), + KEY `xlink_xchan` ( `xlink_xchan` ), + KEY `xlink_link` ( `xlink_link` ), + KEY `xlink_updated` ( `xlink_updated` ) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + CREATE TABLE IF NOT EXISTS `xprof` ( `xprof_hash` char(255) NOT NULL, `xprof_desc` char(255) NOT NULL DEFAULT '', |