From aa9d48ccc9bae133812efe6a619de819029b32a6 Mon Sep 17 00:00:00 2001 From: Midorica Date: Tue, 10 Oct 2023 18:37:18 -0400 Subject: [PATCH] fixed the diva profile again --- core/data/schema/versions/SBZV_5_rollback.sql | 2 +- core/data/schema/versions/SBZV_6_upgrade.sql | 2 +- titles/diva/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/data/schema/versions/SBZV_5_rollback.sql b/core/data/schema/versions/SBZV_5_rollback.sql index 4eddc17..851d357 100644 --- a/core/data/schema/versions/SBZV_5_rollback.sql +++ b/core/data/schema/versions/SBZV_5_rollback.sql @@ -1,2 +1,2 @@ ALTER TABLE diva_profile - DROP skn_eqp, \ No newline at end of file + DROP skn_eqp; \ No newline at end of file diff --git a/core/data/schema/versions/SBZV_6_upgrade.sql b/core/data/schema/versions/SBZV_6_upgrade.sql index 63ff6b3..d417506 100644 --- a/core/data/schema/versions/SBZV_6_upgrade.sql +++ b/core/data/schema/versions/SBZV_6_upgrade.sql @@ -1,2 +1,2 @@ ALTER TABLE diva_profile - ADD skn_eqp INT NOT NULL DEFAULT 0, \ No newline at end of file + ADD skn_eqp INT NOT NULL DEFAULT 0; \ No newline at end of file diff --git a/titles/diva/__init__.py b/titles/diva/__init__.py index 46ea090..9a9e6ef 100644 --- a/titles/diva/__init__.py +++ b/titles/diva/__init__.py @@ -7,4 +7,4 @@ index = DivaServlet database = DivaData reader = DivaReader game_codes = [DivaConstants.GAME_CODE] -current_schema_version = 5 +current_schema_version = 6