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
+2 -2
View File
@@ -6,8 +6,8 @@ export const up = (pgm) => {
password TEXT NOT NULL,
role_id UUID,
email TEXT UNIQUE NOT NULL,
createdAt TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
updatedAt TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
created_at TIMESTAMP DEFAULT NOW(),
updated_at TIMESTAMP DEFAULT NOW(),
FOREIGN KEY (role_id) REFERENCES role(id)
);
`)