Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix installer script #66

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;

Loading