Skip to content

Commit

Permalink
Merge pull request #594 from boherm/#32698-add-type-feature-flags
Browse files Browse the repository at this point in the history
Add type in feature_flag table
  • Loading branch information
jolelievre committed Jul 11, 2023
2 parents 497fc83 + fdf8037 commit c08b144
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions upgrade/sql/9.0.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ SET NAMES 'utf8mb4';
INSERT IGNORE INTO `PREFIX_hook` (`id_hook`, `name`, `title`, `description`, `position`) VALUES
(NULL, 'actionUpdateCartAddress', 'Triggers after changing address on the cart', 'This hook is called after address is changed on the cart', '1'),
(NULL, 'actionCartGetPackageShippingCost', 'After getting package shipping cost value', 'This hook is called in order to allow to modify package shipping cost', '1');

ALTER TABLE `PREFIX_feature_flag` ADD `type` VARCHAR(64) DEFAULT 'env,dotenv,db' NOT NULL AFTER `name`;

0 comments on commit c08b144

Please sign in to comment.