use sqlx migrations
This commit is contained in:
8
migrations/20250626164633_items.sql
Normal file
8
migrations/20250626164633_items.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
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
|
||||
)
|
||||
Reference in New Issue
Block a user