This repository has been archived on 2023-11-08. You can view files and clone it, but cannot push or open issues or pull requests.
fiddle/migrations/2023-05-31-130457_init/up.sql

9 lines
242 B
SQL

CREATE EXTENSION IF NOT EXISTS pgcrypto;
CREATE TABLE directories (
id uuid PRIMARY KEY DEFAULT GEN_RANDOM_UUID(),
active boolean NOT NULL,
created_at timestamptz NOT NULL DEFAULT CURRENT_TIMESTAMP,
updated_at timestamptz
);