schema: fix user.id type

This is no longer a serial after the canonical ID migration.
This commit is contained in:
Simon Ser 2023-08-22 17:40:47 +00:00 committed by Drew DeVault
parent c2a87f590d
commit eec641b3e4
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ CREATE TYPE webhook_event AS ENUM (
);
CREATE TABLE "user" (
id serial PRIMARY KEY,
id integer PRIMARY KEY,
username character varying(256) UNIQUE,
created timestamp without time zone NOT NULL,
updated timestamp without time zone NOT NULL,