Skip to content

Commit

Permalink
Add type in feature_flag table
Browse files Browse the repository at this point in the history
  • Loading branch information
boherm committed Jul 6, 2023
1 parent 497fc83 commit 11159ec
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;

0 comments on commit 11159ec

Please sign in to comment.