mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Fix table structure
This commit is contained in:
parent
2aa302c570
commit
61ecdf789c
2 changed files with 24 additions and 10 deletions
32
database.sql
32
database.sql
|
@ -1,6 +1,6 @@
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
-- Friendica 2020.12-dev (Red Hot Poker)
|
-- Friendica 2020.12-dev (Red Hot Poker)
|
||||||
-- DB_UPDATE_VERSION 1381
|
-- DB_UPDATE_VERSION 1382
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@ -461,6 +461,19 @@ CREATE TABLE IF NOT EXISTS `conversation` (
|
||||||
INDEX `received` (`received`)
|
INDEX `received` (`received`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Raw data and structure information for messages';
|
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Raw data and structure information for messages';
|
||||||
|
|
||||||
|
--
|
||||||
|
-- TABLE delayed-post
|
||||||
|
--
|
||||||
|
CREATE TABLE IF NOT EXISTS `delayed-post` (
|
||||||
|
`id` int unsigned NOT NULL auto_increment,
|
||||||
|
`uri` varchar(255) COMMENT 'URI of the post that will be posted later',
|
||||||
|
`uid` mediumint unsigned COMMENT 'Owner User id',
|
||||||
|
`delayed` datetime COMMENT 'delay time',
|
||||||
|
PRIMARY KEY(`id`),
|
||||||
|
UNIQUE INDEX `uri` (`uri`(190)),
|
||||||
|
FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
|
||||||
|
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Posts that are about to be posted at a later time';
|
||||||
|
|
||||||
--
|
--
|
||||||
-- TABLE diaspora-interaction
|
-- TABLE diaspora-interaction
|
||||||
--
|
--
|
||||||
|
@ -1472,7 +1485,7 @@ CREATE TABLE IF NOT EXISTS `workerqueue` (
|
||||||
--
|
--
|
||||||
-- VIEW category-view
|
-- VIEW category-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `category-view`;
|
DROP VIEW `category-view`;
|
||||||
CREATE VIEW `category-view` AS SELECT
|
CREATE VIEW `category-view` AS SELECT
|
||||||
`post-category`.`uri-id` AS `uri-id`,
|
`post-category`.`uri-id` AS `uri-id`,
|
||||||
`post-category`.`uid` AS `uid`,
|
`post-category`.`uid` AS `uid`,
|
||||||
|
@ -1489,7 +1502,7 @@ CREATE VIEW `category-view` AS SELECT
|
||||||
--
|
--
|
||||||
-- VIEW tag-view
|
-- VIEW tag-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `tag-view`;
|
DROP VIEW `tag-view`;
|
||||||
CREATE VIEW `tag-view` AS SELECT
|
CREATE VIEW `tag-view` AS SELECT
|
||||||
`post-tag`.`uri-id` AS `uri-id`,
|
`post-tag`.`uri-id` AS `uri-id`,
|
||||||
`item-uri`.`uri` AS `uri`,
|
`item-uri`.`uri` AS `uri`,
|
||||||
|
@ -1507,7 +1520,7 @@ CREATE VIEW `tag-view` AS SELECT
|
||||||
--
|
--
|
||||||
-- VIEW network-item-view
|
-- VIEW network-item-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `network-item-view`;
|
DROP VIEW `network-item-view`;
|
||||||
CREATE VIEW `network-item-view` AS SELECT
|
CREATE VIEW `network-item-view` AS SELECT
|
||||||
`item`.`parent-uri-id` AS `uri-id`,
|
`item`.`parent-uri-id` AS `uri-id`,
|
||||||
`item`.`parent-uri` AS `uri`,
|
`item`.`parent-uri` AS `uri`,
|
||||||
|
@ -1539,7 +1552,7 @@ CREATE VIEW `network-item-view` AS SELECT
|
||||||
--
|
--
|
||||||
-- VIEW network-thread-view
|
-- VIEW network-thread-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `network-thread-view`;
|
DROP VIEW `network-thread-view`;
|
||||||
CREATE VIEW `network-thread-view` AS SELECT
|
CREATE VIEW `network-thread-view` AS SELECT
|
||||||
`item`.`uri-id` AS `uri-id`,
|
`item`.`uri-id` AS `uri-id`,
|
||||||
`item`.`uri` AS `uri`,
|
`item`.`uri` AS `uri`,
|
||||||
|
@ -1570,7 +1583,7 @@ CREATE VIEW `network-thread-view` AS SELECT
|
||||||
--
|
--
|
||||||
-- VIEW owner-view
|
-- VIEW owner-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `owner-view`;
|
DROP VIEW `owner-view`;
|
||||||
CREATE VIEW `owner-view` AS SELECT
|
CREATE VIEW `owner-view` AS SELECT
|
||||||
`contact`.`id` AS `id`,
|
`contact`.`id` AS `id`,
|
||||||
`contact`.`uid` AS `uid`,
|
`contact`.`uid` AS `uid`,
|
||||||
|
@ -1705,7 +1718,7 @@ CREATE VIEW `owner-view` AS SELECT
|
||||||
--
|
--
|
||||||
-- VIEW pending-view
|
-- VIEW pending-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `pending-view`;
|
DROP VIEW `pending-view`;
|
||||||
CREATE VIEW `pending-view` AS SELECT
|
CREATE VIEW `pending-view` AS SELECT
|
||||||
`register`.`id` AS `id`,
|
`register`.`id` AS `id`,
|
||||||
`register`.`hash` AS `hash`,
|
`register`.`hash` AS `hash`,
|
||||||
|
@ -1727,7 +1740,7 @@ CREATE VIEW `pending-view` AS SELECT
|
||||||
--
|
--
|
||||||
-- VIEW tag-search-view
|
-- VIEW tag-search-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `tag-search-view`;
|
DROP VIEW `tag-search-view`;
|
||||||
CREATE VIEW `tag-search-view` AS SELECT
|
CREATE VIEW `tag-search-view` AS SELECT
|
||||||
`post-tag`.`uri-id` AS `uri-id`,
|
`post-tag`.`uri-id` AS `uri-id`,
|
||||||
`item`.`id` AS `iid`,
|
`item`.`id` AS `iid`,
|
||||||
|
@ -1748,7 +1761,7 @@ CREATE VIEW `tag-search-view` AS SELECT
|
||||||
--
|
--
|
||||||
-- VIEW workerqueue-view
|
-- VIEW workerqueue-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `workerqueue-view`;
|
DROP VIEW `workerqueue-view`;
|
||||||
CREATE VIEW `workerqueue-view` AS SELECT
|
CREATE VIEW `workerqueue-view` AS SELECT
|
||||||
`process`.`pid` AS `pid`,
|
`process`.`pid` AS `pid`,
|
||||||
`workerqueue`.`priority` AS `priority`
|
`workerqueue`.`priority` AS `priority`
|
||||||
|
@ -1756,3 +1769,4 @@ CREATE VIEW `workerqueue-view` AS SELECT
|
||||||
INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
|
INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
|
||||||
WHERE NOT `workerqueue`.`done`;
|
WHERE NOT `workerqueue`.`done`;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -537,7 +537,7 @@ return [
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
"url" => ["UNIQUE", "url"],
|
"uri" => ["UNIQUE", "uri(190)"],
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"diaspora-interaction" => [
|
"diaspora-interaction" => [
|
||||||
|
|
Loading…
Reference in a new issue