Skip to content

Commit

Permalink
Merge pull request #66 from dachcom-digital/installer_fix
Browse files Browse the repository at this point in the history
fix installer script
  • Loading branch information
solverat authored Aug 9, 2024
2 parents 28633a7 + 675ae2b commit cc4235b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Upgrade Notes

## 3.1.1
- **[BUGFIX]** Fix installer script

## 3.1.0
- **[NEW FEATURE]** Add Release Type to allow draft/public states [@64](https://github.com/dachcom-digital/pimcore-seo/issues/64)

Expand Down
2 changes: 2 additions & 0 deletions config/install/sql/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ CREATE TABLE IF NOT EXISTS `seo_element_meta_data` (
`element_id` int(11) NOT NULL,
`integrator` varchar(255) NOT NULL,
`data` longtext NOT NULL COMMENT '(DC2Type:array)',
`release_type` varchar(255) default 'public' not null,
PRIMARY KEY (`id`),
UNIQUE KEY `element_type_id_integrator` (`element_type`,`element_id`,`integrator`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
Expand All @@ -19,3 +20,4 @@ CREATE TABLE IF NOT EXISTS `seo_queue_entry` (
`creation_date` datetime NOT NULL,
PRIMARY KEY (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;

0 comments on commit cc4235b

Please sign in to comment.