File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 33CREATE TABLE iem_schema_manager_version (
44 version int ,
55 updated timestamptz );
6- INSERT into iem_schema_manager_version values (7 , now());
6+ INSERT into iem_schema_manager_version values (8 , now());
77
88CREATE TABLE sensors (
99 station varchar (5 ),
@@ -13,7 +13,6 @@ CREATE TABLE sensors(
1313 sensor3 varchar (100 )
1414);
1515GRANT SELECT on sensors to nobody;
16-
1716
1817CREATE TABLE alldata (
1918 station varchar (6 ),
@@ -33,7 +32,9 @@ CREATE TABLE alldata(
3332 tfs2_text text ,
3433 tfs3_text text ,
3534 pcpn real ,
36- vsby real
35+ vsby real ,
36+ feel real ,
37+ relh real
3738) PARTITION by range(valid);
3839ALTER TABLE alldata OWNER to mesonet;
3940GRANT ALL on alldata to ldm;
Original file line number Diff line number Diff line change 1+ -- Store more things
2+ alter table alldata add feel real ;
3+ alter table alldata add relh real ;
You can’t perform that action at this time.
0 commit comments