Skip to content

Commit

Permalink
Make controller IP nullable (#537)
Browse files Browse the repository at this point in the history
make controller IP nullable
  • Loading branch information
paulgb authored Jan 5, 2024
1 parent 56beb7f commit 58dd4be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion plane/schema/derived_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ CREATE TABLE public.controller (
is_online boolean NOT NULL,
plane_version character varying(255) NOT NULL,
plane_hash character varying(255) NOT NULL,
ip inet NOT NULL
ip inet
);


Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table controller alter column ip drop not null;

0 comments on commit 58dd4be

Please sign in to comment.