save-sync/migrations/2021-03-02-025744_create_ga.../up.sql

7 lines
215 B
SQL

-- 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
)