k / gitfoss

Files

Forked Fromethicdevs / gitfoss
Fork0
~db/migrations/20221012172220_autoincrement_pull_request_uid/migration.sql
.sql
SQLPL
(text/x-sql)
-- AlterTable
CREATE SEQUENCE "pullrequest_uid_seq";
ALTER TABLE "PullRequest" ALTER COLUMN "uid" SET DEFAULT nextval('pullrequest_uid_seq');
ALTER SEQUENCE "pullrequest_uid_seq" OWNED BY "PullRequest"."uid";