File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Upgrade Notes
2
2
3
+ ## 3.1.1
4
+ - ** [ BUGFIX] ** Fix installer script
5
+
3
6
## 3.1.0
4
7
- ** [ NEW FEATURE] ** Add Release Type to allow draft/public states [ @64 ] ( https://github.com/dachcom-digital/pimcore-seo/issues/64 )
5
8
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ CREATE TABLE IF NOT EXISTS `seo_element_meta_data` (
4
4
` element_id` int (11 ) NOT NULL ,
5
5
` integrator` varchar (255 ) NOT NULL ,
6
6
` data` longtext NOT NULL COMMENT ' (DC2Type:array)' ,
7
+ ` release_type` varchar (255 ) default ' public' not null ,
7
8
PRIMARY KEY (` id` ),
8
9
UNIQUE KEY ` element_type_id_integrator` (` element_type` ,` element_id` ,` integrator` )
9
10
) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 ROW_FORMAT= DYNAMIC;
@@ -19,3 +20,4 @@ CREATE TABLE IF NOT EXISTS `seo_queue_entry` (
19
20
` creation_date` datetime NOT NULL ,
20
21
PRIMARY KEY (` uuid` )
21
22
) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 ROW_FORMAT= DYNAMIC;
23
+
You can’t perform that action at this time.
0 commit comments