Files
tcg-collectors-server/migrations/007_create-role-table.js
T
joseph.nelson4456 4c2851cee5
Build and Push Image / build-and-push (push) Failing after 1m33s
fixed migration issues
2026-05-13 22:44:40 -07:00

17 lines
342 B
JavaScript

export const up = (pgm) => {
pgm.sql(`
CREATE TABLE role (
id UUID PRIMARY KEY,
name TEXT UNIQUE NOT NULL,
created_at TIMESTAMP DEFAULT NOW(),
updated_at TIMESTAMP DEFAULT NOW()
);
`)
}
export const down = (pmg) => {
pgm.sql(`
DROP TABLE role;
`)
}