Skip to content

Commit 242da63

Browse files
committed
Remove table "#__csp" from support.sql
1 parent 85d42d2 commit 242da63

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

installation/sql/mysql/supports.sql

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -130,24 +130,6 @@ CREATE TABLE IF NOT EXISTS `#__contentitem_tag_map` (
130130

131131
-- --------------------------------------------------------
132132

133-
--
134-
-- Table structure for table `#__csp`
135-
--
136-
137-
CREATE TABLE IF NOT EXISTS `#__csp` (
138-
`id` int NOT NULL AUTO_INCREMENT,
139-
`document_uri` varchar(500) NOT NULL DEFAULT '',
140-
`blocked_uri` varchar(500) NOT NULL DEFAULT '',
141-
`directive` varchar(500) NOT NULL DEFAULT '',
142-
`client` varchar(500) NOT NULL DEFAULT '',
143-
`created` datetime NOT NULL,
144-
`modified` datetime NOT NULL,
145-
`published` tinyint NOT NULL DEFAULT 0,
146-
PRIMARY KEY (`id`)
147-
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
148-
149-
-- --------------------------------------------------------
150-
151133
--
152134
-- Table structure for table `#__fields`
153135
--

installation/sql/postgresql/supports.sql

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -138,24 +138,6 @@ COMMENT ON COLUMN "#__contentitem_tag_map"."tag_id" IS 'PK from the tag table';
138138
COMMENT ON COLUMN "#__contentitem_tag_map"."tag_date" IS 'Date of most recent save for this tag-item';
139139
COMMENT ON COLUMN "#__contentitem_tag_map"."type_id" IS 'PK from the content_type table';
140140

141-
-- --------------------------------------------------------
142-
143-
--
144-
-- Table structure for table `#__csp`
145-
--
146-
147-
CREATE TABLE IF NOT EXISTS "#__csp" (
148-
"id" serial NOT NULL,
149-
"document_uri" varchar(500) NOT NULL DEFAULT '',
150-
"blocked_uri" varchar(500) NOT NULL DEFAULT '',
151-
"directive" varchar(500) NOT NULL DEFAULT '',
152-
"client" varchar(500) NOT NULL DEFAULT '',
153-
"created" timestamp without time zone NOT NULL,
154-
"modified" timestamp without time zone NOT NULL,
155-
"published" smallint DEFAULT 0 NOT NULL,
156-
PRIMARY KEY ("id")
157-
);
158-
159141
--
160142
-- Table structure for table `#__fields`
161143
--

0 commit comments

Comments
 (0)