Files
tcg-collectors-server/migrations/001_create-image-table.js
T
2026-05-13 22:59:55 -07:00

18 lines
339 B
JavaScript

export const up = (pgm) => {
pgm.sql(`
CREATE TABLE images (
id UUID PRIMARY KEY,
file TEXT,
image BYTEA,
created_at TIMESTAMP DEFAULT NOW(),
updated_at TIMESTAMP DEFAULT NOW()
);
`)
}
export const down = (pgm) => {
pgm.sql(`
DROP TABLE images;
`)
}