mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-07-01 20:26:27 +00:00
refactor: chart info database importer
This commit is contained in:
11
tests/resources/cidb.sql
Normal file
11
tests/resources/cidb.sql
Normal file
@ -0,0 +1,11 @@
|
||||
CREATE TABLE charts_info (
|
||||
song_id TEXT NOT NULL,
|
||||
rating_class INTEGER NOT NULL,
|
||||
constant INTEGER NOT NULL,
|
||||
notes INTEGER
|
||||
);
|
||||
|
||||
INSERT INTO charts_info (song_id, rating_class, constant, notes) VALUES
|
||||
("test1", 1, 90, 900),
|
||||
("test2", 2, 95, 950),
|
||||
("test3", 3, 100, NULL);
|
Reference in New Issue
Block a user