mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-11 01:24:27 +02:00
extensible item_id table for managing all the different message-ids generated by multiple services
This commit is contained in:
parent
cdb6510b9f
commit
8a8702c9cd
4 changed files with 497 additions and 424 deletions
12
database.sql
12
database.sql
|
@ -782,16 +782,12 @@ INDEX ( `otype` )
|
|||
CREATE TABLE IF NOT EXISTS `item_id` (
|
||||
`iid` INT NOT NULL ,
|
||||
`uid` INT NOT NULL ,
|
||||
`face` CHAR( 255 ) NOT NULL ,
|
||||
`dspr` CHAR( 255 ) NOT NULL ,
|
||||
`twit` CHAR( 255 ) NOT NULL ,
|
||||
`stat` CHAR( 255 ) NOT NULL ,
|
||||
`sid` CHAR ( 255 ) NOT NULL,
|
||||
`service` char ( 255 ) NOT NULL,
|
||||
PRIMARY KEY ( `iid` ),
|
||||
INDEX ( `uid` ),
|
||||
INDEX ( `face` ),
|
||||
INDEX ( `dspr` ),
|
||||
INDEX ( `twit` ),
|
||||
INDEX ( `stat` )
|
||||
INDEX ( `sid` ),
|
||||
INDEX ( `service` )
|
||||
) ENGINE = MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `manage` (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue