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