mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Remove accidentally created table
This commit is contained in:
parent
a330a3c22d
commit
f95d5c7f89
1 changed files with 0 additions and 15 deletions
15
database.sql
15
database.sql
|
@ -1842,21 +1842,6 @@ CREATE TABLE IF NOT EXISTS `worker-ipc` (
|
|||
PRIMARY KEY(`key`)
|
||||
) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Inter process communication between the frontend and the worker';
|
||||
|
||||
--
|
||||
-- TABLE advancedcontentfilter_rules
|
||||
--
|
||||
CREATE TABLE IF NOT EXISTS `advancedcontentfilter_rules` (
|
||||
`id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented rule id',
|
||||
`uid` int unsigned NOT NULL COMMENT 'Owner user id',
|
||||
`name` varchar(255) NOT NULL COMMENT 'Rule name',
|
||||
`expression` mediumtext NOT NULL COMMENT 'Expression text',
|
||||
`serialized` mediumtext NOT NULL COMMENT 'Serialized parsed expression',
|
||||
`active` boolean NOT NULL DEFAULT '1' COMMENT 'Whether the rule is active or not',
|
||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date',
|
||||
PRIMARY KEY(`id`),
|
||||
INDEX `uid_active` (`uid`,`active`)
|
||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Advancedcontentfilter addon rules';
|
||||
|
||||
--
|
||||
-- VIEW application-view
|
||||
--
|
||||
|
|
Loading…
Reference in a new issue