Skip to content

Instantly share code, notes, and snippets.

@n3t0cfg
Created April 12, 2017 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n3t0cfg/a985454e41f81afe066b6c4fa94b2203 to your computer and use it in GitHub Desktop.
Save n3t0cfg/a985454e41f81afe066b6c4fa94b2203 to your computer and use it in GitHub Desktop.
SQL used to add member-documents benefit
INSERT INTO `benefits` (`id`, `name`, `slug`, `description`, `is_active`, `created`, `modified`, `membership_type_id`)
VALUES
(326, 'Member Documents', 'member-documents', 'Access to member documents', 1, '2017-04-12 18:54:53', '2017-04-12 18:54:53', 1),
(327, 'Member Documents', 'member-documents', 'Access to member documents', 1, '2017-04-12 18:54:53', '2017-04-12 18:54:53', 2);
INSERT INTO `ms_plan_benefits` (`plan_id`, `benefit_id`, `allow_delinquent`)
VALUES
(1, 327, 0),
(6, 327, 0),
(1, 326, 0),
(6, 326, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment