Skip to content

Commit 2b90094

Browse files
authored
Merge pull request #38 from appirio-tech/dev
Fix for Country Codes
2 parents 5579297 + 9056ce8 commit 2b90094

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/com/appirio/tech/core/service/identity/dao

1 file changed

+2
-2
lines changed

src/main/java/com/appirio/tech/core/service/identity/dao/UserDAO.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ public abstract class UserDAO implements DaoBase<User>, Transactional<UserDAO> {
227227

228228
@SqlUpdate(
229229
"INSERT INTO informixoltp.coder" +
230-
"(coder_id, quote, coder_type_id, comp_country_code, display_quote, quote_location, quote_color, display_banner, banner_style) VALUES " +
231-
"(:coderId, '', 2, :countryCode, 1, 'md', '#000000', 1, 'bannerStyle4')")
230+
"(coder_id, quote, coder_type_id, home_country_code, comp_country_code, display_quote, quote_location, quote_color, display_banner, banner_style) VALUES " +
231+
"(:coderId, '', 2, :countryCode, :countryCode, 1, 'md', '#000000', 1, 'bannerStyle4')")
232232
abstract int createCoder(@Bind("coderId") long coderId, @Bind("countryCode") String countryCode);
233233

234234
@SqlUpdate(

0 commit comments

Comments
 (0)