mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-17 23:12:16 +00:00
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
INSERT INTO bis.tbl_bundesland VALUES (1,'B','Burgenland');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (2,'K','Kärnten');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (3,'NÖ','Niederösterreich');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (4,'OÖ','Oberösterreich');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (5,'S','Salzburg');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (6,'St','Steiermark');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (7,'T','Tirol');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (8,'V','Voralberg');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (9,'W','Wien');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (10,'EU','Ausland EU');
|
||||
INSERT INTO bis.tbl_bundesland VALUES (11,'nichtEU','Ausland nicht EU');
|
||||
@@ -1,3 +1,17 @@
|
||||
CREATE TABLE sync.stp_staat
|
||||
(
|
||||
__staat integer NOT NULL,
|
||||
chbezeichnung character varying(256),
|
||||
chkurzbez character varying(8),
|
||||
chvorwahl character varying(16),
|
||||
chkontinent character varying(32),
|
||||
boeu boolean NOT NULL,
|
||||
constraint stp_staat_pkey primary key (__staat)
|
||||
);
|
||||
|
||||
REVOKE ALL ON TABLE sync.stp_staat FROM PUBLIC;
|
||||
GRANT INSERT,SELECT,UPDATE ON TABLE sync.stp_staat TO GROUP admin;
|
||||
|
||||
insert into sync.stp_staat (__staat, chbezeichnung, chkurzbez, chvorwahl, chkontinent, boeu) values ('1', 'Österreich', 'A', '++43', 'Europa', '1');
|
||||
insert into sync.stp_staat (__staat, chbezeichnung, chkurzbez, chvorwahl, chkontinent, boeu) values ('2', 'Deutschland', 'D', '++49', 'Europa', '1');
|
||||
insert into sync.stp_staat (__staat, chbezeichnung, chkurzbez, chvorwahl, chkontinent, boeu) values ('3', 'Schweiz', 'CH', '++41', 'Europa', '0');
|
||||
|
||||
Reference in New Issue
Block a user