9 lines
191 B
SQL
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()
|
|
);
|