fixed migration issues
Build and Push Image / build-and-push (push) Failing after 1m33s

This commit is contained in:
2026-05-13 22:44:40 -07:00
parent 7dc66697ea
commit 4c2851cee5
7 changed files with 23 additions and 9 deletions
+3 -1
View File
@@ -2,7 +2,9 @@ export const up = (pgm) => {
pgm.sql(`
CREATE TABLE role (
id UUID PRIMARY KEY,
name TEXT UNIQUE NOT NULL
name TEXT UNIQUE NOT NULL,
created_at TIMESTAMP DEFAULT NOW(),
updated_at TIMESTAMP DEFAULT NOW()
);
`)
}