Skip to content

Commit

Permalink
Drop not null from result_time column
Browse files Browse the repository at this point in the history
  • Loading branch information
CarstenHollmann committed May 28, 2020
1 parent 10df1ff commit c404a8f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions etc/db/postgresql/update_130_140.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ alter table public.historical_location alter column sta_identifier set not null;
alter table public.observation add column sta_identifier varchar(255);
update public.observation set sta_identifier = observation_id;
alter table public.observation alter column sta_identifier set not null;
alter table public.observation alter column result_time drop not NULL;

-- update platform table
alter table public.platform add column sta_identifier varchar(255);
Expand Down

0 comments on commit c404a8f

Please sign in to comment.