blob: 55f3cccb201735a978fd69e32d074779c6f7ea08 (
plain) (
tree)
|
|
CREATE TABLE Stead (
id SERIAL PRIMARY KEY,
username TEXT NOT NULL UNIQUE,
password TEXT NOT NULL,
inventory JSONB,
ephemeral_statuses TEXT[]
);
CREATE TABLE stead_plant (
stead INTEGER references stead(id),
plant INTEGER references plant(id)
);
|