Remove space3 api

This commit is contained in:
2023-09-24 16:43:01 -04:00
parent f6728c2471
commit 50cb774194
3 changed files with 11 additions and 128 deletions

View File

@@ -188,16 +188,6 @@ def repair(): # Repairs all tables or updates them if needed
["lastUpdate", 3],
],
"localStorage": [["username", 0], ["data", 4]],
"space3": [
["id", 5],
["owner", 0],
["title", 0],
["description", 4],
["preferences", 4],
["likes", 1],
["downloads", 1],
],
"space3likes": [["id", 1], ["account", 0]],
"golfGamePlayers": [
["gameID", 1],
["multiplier", 1],
@@ -311,7 +301,7 @@ def repair(): # Repairs all tables or updates them if needed
name == "information"
): # Used to check the information table to see if the database can be updated in a better way.
version = trueSearch("SELECT data FROM information WHERE pointer='version'")
latest_version = "v2.8"
latest_version = "v2.9"
if version: # Checks if the version tag still exists.
try: # In here you can update the version to a new version
version = version[0][0]
@@ -418,6 +408,11 @@ def repair(): # Repairs all tables or updates them if needed
command("DROP TABLE klumpy2")
version = "v2.8"
updatedVersions.append("v2.8")
if version == "v2.8":
command("DROP TABLE space3")
command("DROP TABLE space3likes")
version = "v2.8"
updatedVersions.append("v2.8")
except:
1
# Fixes the version if it is invalid to the latest version