Skip to content

Commit

Permalink
fix: neoq_jobs.id is an integer and should be bigint
Browse files Browse the repository at this point in the history
Fixes #89
  • Loading branch information
acaloiaro committed Oct 5, 2023
1 parent 295d0bf commit 7faa892
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE neoq_jobs ALTER COLUMN id SET DATA TYPE integer;
ALTER SEQUENCE public.neoq_jobs_id_seq AS integer;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE neoq_jobs ALTER COLUMN id SET DATA TYPE bigint;
ALTER SEQUENCE public.neoq_jobs_id_seq AS bigint;

0 comments on commit 7faa892

Please sign in to comment.