Skip to content

Commit

Permalink
Remove not null constraint on some control_anteriority columns
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentAntoine committed Jul 22, 2021
1 parent b8dca81 commit 5ce7f87
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ALTER TABLE public.control_anteriority
ADD COLUMN number_controls_last_5_years SMALLINT NOT NULL,
ADD COLUMN infraction_rate REAL NOT NULL,
ADD COLUMN diversion_rate REAL NOT NULL,
ADD COLUMN seizure_rate REAL NOT NULL,
ADD COLUMN escort_to_quay_rate REAL NOT NULL;
ADD COLUMN number_controls_last_5_years SMALLINT,
ADD COLUMN infraction_rate REAL,
ADD COLUMN diversion_rate REAL,
ADD COLUMN seizure_rate REAL,
ADD COLUMN escort_to_quay_rate REAL;

0 comments on commit 5ce7f87

Please sign in to comment.