mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 15:04:38 +01:00
8 lines
93 B
PL/PgSQL
8 lines
93 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE questlists (
|
|
ind int NOT NULL PRIMARY KEY,
|
|
questlist bytea
|
|
);
|
|
|
|
END; |