Files
YouduWiki/backend/store/pg/migration/000013_create_license.up.sql
2026-05-21 19:52:45 +08:00

9 lines
191 B
SQL

-- create table licenses
CREATE TABLE IF NOT EXISTS licenses (
id SERIAL PRIMARY KEY,
"type" text,
code text,
data bytea,
created_at timestamptz NOT NULL DEFAULT NOW()
);