From e12bb7834de424a1e75cfd03e67bf77c47f20d54 Mon Sep 17 00:00:00 2001 From: Joseph Nelson Date: Wed, 13 May 2026 22:52:18 -0700 Subject: [PATCH] found an issue with missing comma for migrations --- migrations/004_create-location-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/004_create-location-table.js b/migrations/004_create-location-table.js index 6a0c267..6074cbf 100644 --- a/migrations/004_create-location-table.js +++ b/migrations/004_create-location-table.js @@ -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() );