found an issue with missing comma for migrations
Build and Push Image / build-and-push (push) Failing after 1m39s

This commit is contained in:
2026-05-13 22:52:18 -07:00
parent 3eb3b39b79
commit e12bb7834d
+1 -1
View File
@@ -2,7 +2,7 @@ export const up = (pgm) => {
pgm.sql(`
CREATE TABLE location (
id UUID PRIMARY KEY,
name TEXT UNIQUE NOT NULL
name TEXT UNIQUE NOT NULL,
created_at TIMESTAMP DEFAULT NOW(),
updated_at TIMESTAMP DEFAULT NOW()
);