Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
784 B
38 lines
784 B
/* SQLite */ |
|
CREATE TABLE cache_data ( |
|
id TEXT NOT NULL, |
|
items SMALLINT NOT NULL DEFAULT 0, |
|
data BLOB NOT NULL, |
|
mtime INTEGER UNSIGNED NOT NULL |
|
); |
|
CREATE UNIQUE INDEX id ON cache_data(id); |
|
|
|
CREATE TABLE items ( |
|
feed_id TEXT NOT NULL, |
|
id TEXT NOT NULL, |
|
data TEXT NOT NULL, |
|
posted INTEGER UNSIGNED NOT NULL |
|
); |
|
CREATE INDEX feed_id ON items(feed_id); |
|
|
|
|
|
/* MySQL */ |
|
CREATE TABLE `cache_data` ( |
|
`id` TEXT CHARACTER SET utf8 NOT NULL, |
|
`items` SMALLINT NOT NULL DEFAULT 0, |
|
`data` BLOB NOT NULL, |
|
`mtime` INT UNSIGNED NOT NULL, |
|
UNIQUE ( |
|
`id`(125) |
|
) |
|
); |
|
|
|
CREATE TABLE `items` ( |
|
`feed_id` TEXT CHARACTER SET utf8 NOT NULL, |
|
`id` TEXT CHARACTER SET utf8 NOT NULL, |
|
`data` TEXT CHARACTER SET utf8 NOT NULL, |
|
`posted` INT UNSIGNED NOT NULL, |
|
INDEX `feed_id` ( |
|
`feed_id`(125) |
|
) |
|
); |