-- Your SQL goes here
CREATE TABLE game_save_location (
id INTEGER PRIMARY KEY NOT NULL,
friendly_name TEXT UNIQUE, -- This can be null
original_path TEXT NOT NULL UNIQUE,
uuid BLOB NOT NULL UNIQUE
)