-- packages/ref-language/sql/postgresql/language.sql -- -- @author jon@jongriffin.com -- @creation-date 2000-11-21 -- @cvs-id $Id: ref-language-create.sql,v 1.3 2010/05/13 16:57:20 emmar Exp $ -- -- ISO 639 create table language_codes ( language_id char(2) constraint language_codes_language_id_pk primary key, name varchar(100) constraint language_codes_name_uq unique constraint language_codes_name_nn not null ); comment on table language_codes is ' This is data from the ISO 639-1 standard on language codes. '; comment on column language_codes.language_id is ' This is the ISO standard language 2 chars code '; comment on column language_codes.name is ' This is the English version of the language name. '; -- now register this table with the repository select acs_reference__new( 'LANGUAGE_CODES', null, 'ISO 639-1', 'http://www.iso.ch', now() );