Skip to content

Commit

Permalink
Merge pull request #7455 from yashodha/minor-fix
Browse files Browse the repository at this point in the history
get rid of auto-incremented column id
  • Loading branch information
monishdeb committed Dec 16, 2015
2 parents 60b5135 + b6a1f9f commit 59f064e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CRM/Upgrade/Incremental/sql/4.7.beta3.mysql.tpl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{* file to handle db changes in 4.7.beta3 during upgrade *}

-- CRM-17660 Add missing Cameroon Provinces and add missing Indian province.
INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES
(NULL, 1038, "LT", "Littoral"),
(NULL, 1038, "NW", "Nord-Ouest"),
(NULL, 1101, "TG", "Telangana");
INSERT INTO civicrm_state_province (country_id, abbreviation, name) VALUES
(1038, "LT", "Littoral"),
(1038, "NW", "Nord-Ouest"),
(1101, "TG", "Telangana");

0 comments on commit 59f064e

Please sign in to comment.