Skip to content

Commit cc4235b

Browse files
authored
Merge pull request #66 from dachcom-digital/installer_fix
fix installer script
2 parents 28633a7 + 675ae2b commit cc4235b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

UPGRADE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Upgrade Notes
22

3+
## 3.1.1
4+
- **[BUGFIX]** Fix installer script
5+
36
## 3.1.0
47
- **[NEW FEATURE]** Add Release Type to allow draft/public states [@64](https://github.com/dachcom-digital/pimcore-seo/issues/64)
58

config/install/sql/install.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CREATE TABLE IF NOT EXISTS `seo_element_meta_data` (
44
`element_id` int(11) NOT NULL,
55
`integrator` varchar(255) NOT NULL,
66
`data` longtext NOT NULL COMMENT '(DC2Type:array)',
7+
`release_type` varchar(255) default 'public' not null,
78
PRIMARY KEY (`id`),
89
UNIQUE KEY `element_type_id_integrator` (`element_type`,`element_id`,`integrator`)
910
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
@@ -19,3 +20,4 @@ CREATE TABLE IF NOT EXISTS `seo_queue_entry` (
1920
`creation_date` datetime NOT NULL,
2021
PRIMARY KEY (`uuid`)
2122
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
23+

0 commit comments

Comments
 (0)