This commit is contained in:
Виктор Гладких 2019-10-14 18:15:17 +03:00
parent 8d2d5b87ac
commit 275c5b467c
2 changed files with 0 additions and 16 deletions

View File

@ -1,21 +1,10 @@
SET search_path TO gm, public;
delete from comment_comment as cc;
delete from location_country_languages;
delete from translation_language as tl;
delete from location_country as lc;
CREATE TABLE codelang (
code varchar(100) NULL,
country varchar(10000) NULL
);
-- Permissions
ALTER TABLE codelang OWNER TO postgres;
GRANT ALL ON TABLE codelang TO postgres;
INSERT INTO codelang (code,country) VALUES
('af','Afrikaans')

View File

@ -5,11 +5,6 @@ CREATE TABLE codelang (
country varchar(10000) NULL
);
-- Permissions
ALTER TABLE codelang OWNER TO postgres;
GRANT ALL ON TABLE codelang TO postgres;
INSERT INTO codelang (code,country) VALUES
('af','Afrikaans')