Skip to content

Commit

Permalink
chore: use BIGSERIAL instead
Browse files Browse the repository at this point in the history
  • Loading branch information
nunogois committed Jul 17, 2024
1 parent 7a1b1d1 commit ed64b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrations/20240716135038-integration-events.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ exports.up = function (db, cb) {
`
CREATE TABLE IF NOT EXISTS integration_events
(
id SERIAL PRIMARY KEY NOT NULL,
id BIGSERIAL PRIMARY KEY NOT NULL,
integration_id INTEGER NOT NULL REFERENCES addons(id) ON DELETE CASCADE,
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(),
state TEXT NOT NULL,
Expand Down

0 comments on commit ed64b1f

Please sign in to comment.