~starkingdoms/starkingdoms

ref: 45e15b1a7b0ec21cc5c6461993a4e9466e5c3447 starkingdoms/starkingdoms-api/migrations/2023-11-30-181014_create_table_savefiles/up.sql -rw-r--r-- 142 bytes
45e15b1a — core API work, add savefile data 2 years ago
                                                                                
1
2
3
4
5
CREATE TABLE savefiles (
    id BIGINT NOT NULL PRIMARY KEY,
    user_id BIGINT NOT NULL REFERENCES users(id),
    save_data jsonb NOT NULL
);