Index: openacs-4/packages/acs-lang/sql/oracle/ad-locales.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/sql/oracle/ad-locales.sql,v
diff -u -r1.35 -r1.36
--- openacs-4/packages/acs-lang/sql/oracle/ad-locales.sql	8 Jan 2010 17:39:58 -0000	1.35
+++ openacs-4/packages/acs-lang/sql/oracle/ad-locales.sql	22 Mar 2010 00:51:38 -0000	1.36
@@ -18,15 +18,15 @@
 -- using the iso-3166-1-countries.txt and iso-639-2_utf-8.txt files
 
 create table language_codes (
-       iso_639_2            char(3) constraint language_codes_pk primary key,
+       iso_639_2            char(3) constraint language_codes_iso_639_2_pk primary key,
        iso_639_1            char(2),
        label                varchar(200)
 );
 comment on table language_codes is 'Contains ISO-639-2 language codes and their corresponding ISO-639-1 when it exists.';
 
 create table country_codes (
        label               varchar(200),
-       country             char(2) constraint country_codes_pk primary key
+       country             char(2) constraint country_codes_country_pk primary key
 );
 comment on table country_codes is 'Contains ISO-3166 country codes';
 
Index: openacs-4/packages/acs-lang/sql/postgresql/ad-locales.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/sql/postgresql/ad-locales.sql,v
diff -u -r1.31 -r1.32
--- openacs-4/packages/acs-lang/sql/postgresql/ad-locales.sql	8 Jan 2010 17:39:58 -0000	1.31
+++ openacs-4/packages/acs-lang/sql/postgresql/ad-locales.sql	22 Mar 2010 00:51:38 -0000	1.32
@@ -20,15 +20,15 @@
 -- using the iso-3166-1-countries.txt and iso-639-2_utf-8.txt files
 
 create table language_codes (
-       iso_639_2            char(3) constraint language_codes_pk primary key,
+       iso_639_2            char(3) constraint language_codes_iso_639_2_pk primary key,
        iso_639_1            char(2),
        label                varchar(200)
 );
 comment on table language_codes is 'Contains ISO-639-2 language codes and their corresponding ISO-639-1 when it exists.';
 
 create table country_codes (
        label               varchar(200),
-       country             char(2) constraint country_codes_pk primary key
+       country             char(2) constraint country_codes_country_pk primary key
 );
 comment on table country_codes is 'Contains ISO-3166 country codes';