Skip to content

Commit

Permalink
chore: Fix test table column type: bigserial -> bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
winebarrel committed Oct 14, 2024
1 parent c530fdc commit fc68afe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schema_test.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ DROP TABLE IF EXISTS job_test;

CREATE TABLE job_test
(
job_id bigserial NOT NULL,
name text NOT NULL,
value text NOT NULL,
job_id bigint NOT NULL,
name text NOT NULL,
value text NOT NULL,

CONSTRAINT job_test_pkey PRIMARY KEY (job_id)
);

0 comments on commit fc68afe

Please sign in to comment.