mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Remove addon table from DB structure
- It isn't used anymore in favor of a Config key
This commit is contained in:
parent
b1b3b0ffe7
commit
dffd28cf20
3 changed files with 20 additions and 82 deletions
56
database.sql
56
database.sql
|
@ -340,22 +340,6 @@ CREATE TABLE IF NOT EXISTS `account-user` (
|
||||||
FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
|
FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Remote and local accounts';
|
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Remote and local accounts';
|
||||||
|
|
||||||
--
|
|
||||||
-- TABLE addon
|
|
||||||
--
|
|
||||||
CREATE TABLE IF NOT EXISTS `addon` (
|
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
|
||||||
`name` varchar(50) NOT NULL DEFAULT '' COMMENT 'addon base (file)name',
|
|
||||||
`version` varchar(50) NOT NULL DEFAULT '' COMMENT 'currently unused',
|
|
||||||
`installed` boolean NOT NULL DEFAULT '0' COMMENT 'currently always 1',
|
|
||||||
`hidden` boolean NOT NULL DEFAULT '0' COMMENT 'currently unused',
|
|
||||||
`timestamp` int unsigned NOT NULL DEFAULT 0 COMMENT 'file timestamp to check for reloads',
|
|
||||||
`plugin_admin` boolean NOT NULL DEFAULT '0' COMMENT '1 = has admin config, 0 = has no admin config',
|
|
||||||
PRIMARY KEY(`id`),
|
|
||||||
INDEX `installed_name` (`installed`,`name`),
|
|
||||||
UNIQUE INDEX `name` (`name`)
|
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registered addons';
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- TABLE apcontact
|
-- TABLE apcontact
|
||||||
--
|
--
|
||||||
|
@ -1871,7 +1855,7 @@ CREATE TABLE IF NOT EXISTS `worker-ipc` (
|
||||||
-- VIEW application-view
|
-- VIEW application-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `application-view`;
|
DROP VIEW IF EXISTS `application-view`;
|
||||||
CREATE VIEW `application-view` AS SELECT
|
CREATE VIEW `application-view` AS SELECT
|
||||||
`application`.`id` AS `id`,
|
`application`.`id` AS `id`,
|
||||||
`application-token`.`uid` AS `uid`,
|
`application-token`.`uid` AS `uid`,
|
||||||
`application`.`name` AS `name`,
|
`application`.`name` AS `name`,
|
||||||
|
@ -1894,7 +1878,7 @@ CREATE VIEW `application-view` AS SELECT
|
||||||
-- VIEW post-user-view
|
-- VIEW post-user-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `post-user-view`;
|
DROP VIEW IF EXISTS `post-user-view`;
|
||||||
CREATE VIEW `post-user-view` AS SELECT
|
CREATE VIEW `post-user-view` AS SELECT
|
||||||
`post-user`.`id` AS `id`,
|
`post-user`.`id` AS `id`,
|
||||||
`post-user`.`id` AS `post-user-id`,
|
`post-user`.`id` AS `post-user-id`,
|
||||||
`post-user`.`uid` AS `uid`,
|
`post-user`.`uid` AS `uid`,
|
||||||
|
@ -2073,7 +2057,7 @@ CREATE VIEW `post-user-view` AS SELECT
|
||||||
-- VIEW post-thread-user-view
|
-- VIEW post-thread-user-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `post-thread-user-view`;
|
DROP VIEW IF EXISTS `post-thread-user-view`;
|
||||||
CREATE VIEW `post-thread-user-view` AS SELECT
|
CREATE VIEW `post-thread-user-view` AS SELECT
|
||||||
`post-user`.`id` AS `id`,
|
`post-user`.`id` AS `id`,
|
||||||
`post-user`.`id` AS `post-user-id`,
|
`post-user`.`id` AS `post-user-id`,
|
||||||
`post-thread-user`.`uid` AS `uid`,
|
`post-thread-user`.`uid` AS `uid`,
|
||||||
|
@ -2250,7 +2234,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT
|
||||||
-- VIEW post-view
|
-- VIEW post-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `post-view`;
|
DROP VIEW IF EXISTS `post-view`;
|
||||||
CREATE VIEW `post-view` AS SELECT
|
CREATE VIEW `post-view` AS SELECT
|
||||||
`item-uri`.`uri` AS `uri`,
|
`item-uri`.`uri` AS `uri`,
|
||||||
`post`.`uri-id` AS `uri-id`,
|
`post`.`uri-id` AS `uri-id`,
|
||||||
`parent-item-uri`.`uri` AS `parent-uri`,
|
`parent-item-uri`.`uri` AS `parent-uri`,
|
||||||
|
@ -2390,7 +2374,7 @@ CREATE VIEW `post-view` AS SELECT
|
||||||
-- VIEW post-thread-view
|
-- VIEW post-thread-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `post-thread-view`;
|
DROP VIEW IF EXISTS `post-thread-view`;
|
||||||
CREATE VIEW `post-thread-view` AS SELECT
|
CREATE VIEW `post-thread-view` AS SELECT
|
||||||
`item-uri`.`uri` AS `uri`,
|
`item-uri`.`uri` AS `uri`,
|
||||||
`post-thread`.`uri-id` AS `uri-id`,
|
`post-thread`.`uri-id` AS `uri-id`,
|
||||||
`parent-item-uri`.`uri` AS `parent-uri`,
|
`parent-item-uri`.`uri` AS `parent-uri`,
|
||||||
|
@ -2532,7 +2516,7 @@ CREATE VIEW `post-thread-view` AS SELECT
|
||||||
-- VIEW category-view
|
-- VIEW category-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `category-view`;
|
DROP VIEW IF EXISTS `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`,
|
||||||
`post-category`.`type` AS `type`,
|
`post-category`.`type` AS `type`,
|
||||||
|
@ -2546,7 +2530,7 @@ CREATE VIEW `category-view` AS SELECT
|
||||||
-- VIEW collection-view
|
-- VIEW collection-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `collection-view`;
|
DROP VIEW IF EXISTS `collection-view`;
|
||||||
CREATE VIEW `collection-view` AS SELECT
|
CREATE VIEW `collection-view` AS SELECT
|
||||||
`post-collection`.`uri-id` AS `uri-id`,
|
`post-collection`.`uri-id` AS `uri-id`,
|
||||||
`post-collection`.`type` AS `type`,
|
`post-collection`.`type` AS `type`,
|
||||||
`post-collection`.`author-id` AS `cid`,
|
`post-collection`.`author-id` AS `cid`,
|
||||||
|
@ -2567,7 +2551,7 @@ CREATE VIEW `collection-view` AS SELECT
|
||||||
-- VIEW media-view
|
-- VIEW media-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `media-view`;
|
DROP VIEW IF EXISTS `media-view`;
|
||||||
CREATE VIEW `media-view` AS SELECT
|
CREATE VIEW `media-view` AS SELECT
|
||||||
`post-media`.`uri-id` AS `uri-id`,
|
`post-media`.`uri-id` AS `uri-id`,
|
||||||
`post-media`.`type` AS `type`,
|
`post-media`.`type` AS `type`,
|
||||||
`post`.`received` AS `received`,
|
`post`.`received` AS `received`,
|
||||||
|
@ -2585,7 +2569,7 @@ CREATE VIEW `media-view` AS SELECT
|
||||||
-- VIEW tag-view
|
-- VIEW tag-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `tag-view`;
|
DROP VIEW IF EXISTS `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`,
|
||||||
`post-tag`.`type` AS `type`,
|
`post-tag`.`type` AS `type`,
|
||||||
`post-tag`.`tid` AS `tid`,
|
`post-tag`.`tid` AS `tid`,
|
||||||
|
@ -2601,7 +2585,7 @@ CREATE VIEW `tag-view` AS SELECT
|
||||||
-- VIEW network-item-view
|
-- VIEW network-item-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `network-item-view`;
|
DROP VIEW IF EXISTS `network-item-view`;
|
||||||
CREATE VIEW `network-item-view` AS SELECT
|
CREATE VIEW `network-item-view` AS SELECT
|
||||||
`post-user`.`uri-id` AS `uri-id`,
|
`post-user`.`uri-id` AS `uri-id`,
|
||||||
`parent-post`.`id` AS `parent`,
|
`parent-post`.`id` AS `parent`,
|
||||||
`post-user`.`received` AS `received`,
|
`post-user`.`received` AS `received`,
|
||||||
|
@ -2616,7 +2600,7 @@ CREATE VIEW `network-item-view` AS SELECT
|
||||||
`post-user`.`contact-id` AS `contact-id`,
|
`post-user`.`contact-id` AS `contact-id`,
|
||||||
`ownercontact`.`contact-type` AS `contact-type`
|
`ownercontact`.`contact-type` AS `contact-type`
|
||||||
FROM `post-user`
|
FROM `post-user`
|
||||||
STRAIGHT_JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid`
|
STRAIGHT_JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid`
|
||||||
INNER JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
|
INNER JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
|
||||||
LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `post-thread-user`.`uid` AND `author`.`cid` = `post-thread-user`.`author-id`
|
LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `post-thread-user`.`uid` AND `author`.`cid` = `post-thread-user`.`author-id`
|
||||||
LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `post-thread-user`.`uid` AND `owner`.`cid` = `post-thread-user`.`owner-id`
|
LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `post-thread-user`.`uid` AND `owner`.`cid` = `post-thread-user`.`owner-id`
|
||||||
|
@ -2632,7 +2616,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 IF EXISTS `network-thread-view`;
|
||||||
CREATE VIEW `network-thread-view` AS SELECT
|
CREATE VIEW `network-thread-view` AS SELECT
|
||||||
`post-thread-user`.`uri-id` AS `uri-id`,
|
`post-thread-user`.`uri-id` AS `uri-id`,
|
||||||
`parent-post`.`id` AS `parent`,
|
`parent-post`.`id` AS `parent`,
|
||||||
`post-thread-user`.`received` AS `received`,
|
`post-thread-user`.`received` AS `received`,
|
||||||
|
@ -2661,7 +2645,7 @@ CREATE VIEW `network-thread-view` AS SELECT
|
||||||
-- VIEW owner-view
|
-- VIEW owner-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `owner-view`;
|
DROP VIEW IF EXISTS `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`,
|
||||||
`contact`.`created` AS `created`,
|
`contact`.`created` AS `created`,
|
||||||
|
@ -2791,7 +2775,7 @@ CREATE VIEW `owner-view` AS SELECT
|
||||||
-- VIEW account-view
|
-- VIEW account-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `account-view`;
|
DROP VIEW IF EXISTS `account-view`;
|
||||||
CREATE VIEW `account-view` AS SELECT
|
CREATE VIEW `account-view` AS SELECT
|
||||||
`contact`.`id` AS `id`,
|
`contact`.`id` AS `id`,
|
||||||
`contact`.`url` AS `url`,
|
`contact`.`url` AS `url`,
|
||||||
`contact`.`nurl` AS `nurl`,
|
`contact`.`nurl` AS `nurl`,
|
||||||
|
@ -2877,7 +2861,7 @@ CREATE VIEW `account-view` AS SELECT
|
||||||
-- VIEW account-user-view
|
-- VIEW account-user-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `account-user-view`;
|
DROP VIEW IF EXISTS `account-user-view`;
|
||||||
CREATE VIEW `account-user-view` AS SELECT
|
CREATE VIEW `account-user-view` AS SELECT
|
||||||
`ucontact`.`id` AS `id`,
|
`ucontact`.`id` AS `id`,
|
||||||
`contact`.`id` AS `pid`,
|
`contact`.`id` AS `pid`,
|
||||||
`ucontact`.`uid` AS `uid`,
|
`ucontact`.`uid` AS `uid`,
|
||||||
|
@ -2981,7 +2965,7 @@ CREATE VIEW `account-user-view` AS SELECT
|
||||||
-- VIEW pending-view
|
-- VIEW pending-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `pending-view`;
|
DROP VIEW IF EXISTS `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`,
|
||||||
`register`.`created` AS `created`,
|
`register`.`created` AS `created`,
|
||||||
|
@ -3003,7 +2987,7 @@ CREATE VIEW `pending-view` AS SELECT
|
||||||
-- VIEW tag-search-view
|
-- VIEW tag-search-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `tag-search-view`;
|
DROP VIEW IF EXISTS `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`,
|
||||||
`post-user`.`uid` AS `uid`,
|
`post-user`.`uid` AS `uid`,
|
||||||
`post-user`.`id` AS `iid`,
|
`post-user`.`id` AS `iid`,
|
||||||
|
@ -3025,7 +3009,7 @@ CREATE VIEW `tag-search-view` AS SELECT
|
||||||
-- VIEW workerqueue-view
|
-- VIEW workerqueue-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `workerqueue-view`;
|
DROP VIEW IF EXISTS `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`
|
||||||
FROM `process`
|
FROM `process`
|
||||||
|
@ -3036,7 +3020,7 @@ CREATE VIEW `workerqueue-view` AS SELECT
|
||||||
-- VIEW profile_field-view
|
-- VIEW profile_field-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `profile_field-view`;
|
DROP VIEW IF EXISTS `profile_field-view`;
|
||||||
CREATE VIEW `profile_field-view` AS SELECT
|
CREATE VIEW `profile_field-view` AS SELECT
|
||||||
`profile_field`.`id` AS `id`,
|
`profile_field`.`id` AS `id`,
|
||||||
`profile_field`.`uid` AS `uid`,
|
`profile_field`.`uid` AS `uid`,
|
||||||
`profile_field`.`label` AS `label`,
|
`profile_field`.`label` AS `label`,
|
||||||
|
@ -3056,7 +3040,7 @@ CREATE VIEW `profile_field-view` AS SELECT
|
||||||
-- VIEW diaspora-contact-view
|
-- VIEW diaspora-contact-view
|
||||||
--
|
--
|
||||||
DROP VIEW IF EXISTS `diaspora-contact-view`;
|
DROP VIEW IF EXISTS `diaspora-contact-view`;
|
||||||
CREATE VIEW `diaspora-contact-view` AS SELECT
|
CREATE VIEW `diaspora-contact-view` AS SELECT
|
||||||
`diaspora-contact`.`uri-id` AS `uri-id`,
|
`diaspora-contact`.`uri-id` AS `uri-id`,
|
||||||
`item-uri`.`uri` AS `url`,
|
`item-uri`.`uri` AS `url`,
|
||||||
`item-uri`.`guid` AS `guid`,
|
`item-uri`.`guid` AS `guid`,
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
Table addon
|
|
||||||
===========
|
|
||||||
|
|
||||||
registered addons
|
|
||||||
|
|
||||||
Fields
|
|
||||||
------
|
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
|
||||||
| ------------ | --------------------------------------------- | ------------ | ---- | --- | ------- | -------------- |
|
|
||||||
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
|
||||||
| name | addon base (file)name | varchar(50) | NO | | | |
|
|
||||||
| version | currently unused | varchar(50) | NO | | | |
|
|
||||||
| installed | currently always 1 | boolean | NO | | 0 | |
|
|
||||||
| hidden | currently unused | boolean | NO | | 0 | |
|
|
||||||
| timestamp | file timestamp to check for reloads | int unsigned | NO | | 0 | |
|
|
||||||
| plugin_admin | 1 = has admin config, 0 = has no admin config | boolean | NO | | 0 | |
|
|
||||||
|
|
||||||
Indexes
|
|
||||||
------------
|
|
||||||
|
|
||||||
| Name | Fields |
|
|
||||||
| -------------- | --------------- |
|
|
||||||
| PRIMARY | id |
|
|
||||||
| installed_name | installed, name |
|
|
||||||
| name | UNIQUE, name |
|
|
||||||
|
|
||||||
|
|
||||||
Return to [database documentation](help/database)
|
|
|
@ -399,23 +399,6 @@ return [
|
||||||
"uid_uri-id" => ["uid", "uri-id"],
|
"uid_uri-id" => ["uid", "uri-id"],
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"addon" => [
|
|
||||||
"comment" => "registered addons",
|
|
||||||
"fields" => [
|
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
|
||||||
"name" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "addon base (file)name"],
|
|
||||||
"version" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "currently unused"],
|
|
||||||
"installed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "currently always 1"],
|
|
||||||
"hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "currently unused"],
|
|
||||||
"timestamp" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "file timestamp to check for reloads"],
|
|
||||||
"plugin_admin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 = has admin config, 0 = has no admin config"],
|
|
||||||
],
|
|
||||||
"indexes" => [
|
|
||||||
"PRIMARY" => ["id"],
|
|
||||||
"installed_name" => ["installed", "name"],
|
|
||||||
"name" => ["UNIQUE", "name"],
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"apcontact" => [
|
"apcontact" => [
|
||||||
"comment" => "ActivityPub compatible contacts - used in the ActivityPub implementation",
|
"comment" => "ActivityPub compatible contacts - used in the ActivityPub implementation",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
|
|
Loading…
Reference in a new issue