mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 23:44:52 +01:00
11 lines
119 B
PL/PgSQL
11 lines
119 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE user_binaries
|
|
(
|
|
id int PRIMARY KEY,
|
|
type1 bytea,
|
|
type2 bytea,
|
|
type3 bytea
|
|
);
|
|
|
|
END; |