setup creating script for raw_telegram table

This commit is contained in:
Tassilo - 2022-08-20 14:43:08 +02:00
parent 0cb4b90db7
commit 91968ff314
Signed by: revol-xut
GPG Key ID: 4F56FF7759627D07

View File

@ -42,6 +42,17 @@
operator int2
);
ALTER TABLE r09_telegrams OWNER TO telegrams;
create table raw_telegrams (
id serial8 primary key not null,
time timestamp not null,
station UUID not null,
region integer not null,
telegram_type int8 not null,
data bytea not null
);
ALTER TABLE raw_telegrams OWNER TO telegrams;
'';
};