category: remove

as not used for a long time by now
This commit is contained in:
Milan
2021-04-11 12:49:27 +02:00
parent 6ede3d84b3
commit 873d546e13
11 changed files with 299 additions and 71 deletions

View File

@@ -149,14 +149,12 @@ CREATE TABLE `calcms_event_history` (
`status` varchar(40) DEFAULT NULL,
`visibility` varchar(40) DEFAULT NULL,
`responsible` varchar(40) DEFAULT NULL,
`category` varchar(60) DEFAULT NULL,
`start_date` date NOT NULL,
`time_of_day` varchar(40) NOT NULL,
`end_date` date NOT NULL,
`program` varchar(40) DEFAULT NULL,
`series_name` varchar(40) DEFAULT NULL,
`comment_count` int(10) unsigned NOT NULL DEFAULT '0',
`category_count` int(10) unsigned NOT NULL DEFAULT '0',
`tag_count` int(10) unsigned NOT NULL DEFAULT '0',
`image` varchar(200) DEFAULT NULL,
`podcast_url` varchar(300) DEFAULT NULL,
@@ -187,7 +185,6 @@ CREATE TABLE `calcms_event_history` (
KEY `start_date` (`start_date`),
KEY `status` (`status`),
KEY `modified_at` (`modified_at`),
KEY `category` (`category`),
KEY `time_of_day` (`time_of_day`),
KEY `end_date` (`end_date`),
KEY `reference` (`reference`),
@@ -237,12 +234,10 @@ CREATE TABLE `calcms_events` (
`status` varchar(40) DEFAULT NULL,
`visibility` varchar(40) DEFAULT NULL,
`responsible` varchar(40) DEFAULT NULL,
`category` varchar(60) DEFAULT NULL,
`start_date` date NOT NULL,
`end_date` date NOT NULL,
`time_of_day` varchar(40) DEFAULT NULL,
`comment_count` int(10) unsigned DEFAULT '0',
`category_count` int(10) unsigned DEFAULT '0',
`tag_count` int(10) unsigned DEFAULT '0',
`podcast_url` varchar(300) DEFAULT NULL,
`archive_url` varchar(300) DEFAULT NULL,
@@ -278,7 +273,6 @@ CREATE TABLE `calcms_events` (
KEY `start_date` (`start_date`),
KEY `status` (`status`),
KEY `modified_at` (`modified_at`),
KEY `category` (`category`),
KEY `time_of_day` (`time_of_day`),
KEY `end_date` (`end_date`),
KEY `reference` (`reference`),
@@ -665,7 +659,6 @@ CREATE TABLE `calcms_series` (
`location` varchar(100) DEFAULT NULL,
`modified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified_by` varchar(100) NOT NULL,
`category` varchar(60) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`assign_event_series_name` varchar(100) DEFAULT NULL,
`assign_event_title` varchar(100) DEFAULT NULL,