slingit.org/system/dbd/sql/pg/schema/system_locale_string.sql
2015-04-01 20:52:52 +02:00

13 lines
277 B
SQL

CREATE TABLE system.locale_string
(
id character varying(50) NOT NULL,
category integer NOT NULL DEFAULT 0,
"enUS" text,
"deDE" text,
CONSTRAINT system_locale_string_pk_id PRIMARY KEY (id)
)
WITH (
OIDS=FALSE
);
ALTER TABLE system.locale_string
OWNER TO username;