feat(db): add diesel and sqlite3 as dependencies
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
DROP TABLE game_save_location
|
||||
@@ -0,0 +1,7 @@
|
||||
-- Your SQL goes here
|
||||
CREATE TABLE game_save_location (
|
||||
id INTEGER PRIMARY KEY,
|
||||
friendly_name TEXT -- This can be null
|
||||
original_PATH BLOB NOT NULL,
|
||||
uuid BLOB NOT NULL
|
||||
)
|
||||
Reference in New Issue
Block a user