mirror of
https://github.com/friendica/friendica
synced 2025-04-27 04:30:11 +00:00
item guids
This commit is contained in:
parent
1eec10329a
commit
8812b7f4ca
6 changed files with 16 additions and 5 deletions
|
@ -160,6 +160,7 @@ CREATE TABLE IF NOT EXISTS `intro` (
|
|||
|
||||
CREATE TABLE IF NOT EXISTS `item` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`guid` char(64) NOT NULL,
|
||||
`uri` char(255) NOT NULL,
|
||||
`uid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`contact-id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
|
@ -208,6 +209,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
`deleted` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`last-child` tinyint(1) unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `guid` (`guid`),
|
||||
KEY `uri` (`uri`),
|
||||
KEY `uid` (`uid`),
|
||||
KEY `contact-id` (`contact-id`),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue