diff --git a/migrations/001_create-image-table.js b/migrations/001_create-image-table.js index 1841160..c39b6e8 100644 --- a/migrations/001_create-image-table.js +++ b/migrations/001_create-image-table.js @@ -5,7 +5,7 @@ export const up = (pgm) => { file TEXT, image BYTEA, created_at TIMESTAMP DEFAULT NOW(), - updated_at TIMESTAMP DEFAULT NOW(), + updated_at TIMESTAMP DEFAULT NOW() ); `) }