]> git.mxchange.org Git - friendica.git/commitdiff
Remove accidentally created table
authorPhilipp <admin@philipp.info>
Thu, 29 Dec 2022 21:47:20 +0000 (22:47 +0100)
committerPhilipp <admin@philipp.info>
Thu, 29 Dec 2022 21:47:20 +0000 (22:47 +0100)
database.sql

index 892de72f1b17a907aa5aa4a66e6ea8643bf80411..2ae33689c19ca53cd75d0b3d3a5bd2cc0774ddc6 100644 (file)
@@ -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
 --