Files
bigbirb/migrations/20250626164633_items.sql
2025-06-26 12:58:44 -04:00

9 lines
172 B
SQL

CREATE TABLE IF NOT EXISTS items (
id BIGSERIAL PRIMARY KEY,
owner BIGINT NOT NULL,
game BIGINT NOT NULL,
item BIGINT NOT NULL,
data JSON NOT NULL,
name TEXT
)