Files
Erupe/patch-schema/dbuserbinaries.sql
2022-08-02 04:37:19 +10:00

11 lines
119 B
PL/PgSQL

BEGIN;
CREATE TABLE user_binaries
(
id int PRIMARY KEY,
type1 bytea,
type2 bytea,
type3 bytea
);
END;