-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall.py
55 lines (45 loc) · 1.72 KB
/
install.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
import sqlite3
dir_extension = os.path.dirname(os.path.abspath(__file__))
def initialize_database():
with sqlite3.connect(os.path.join(dir_extension, "sqlite.db")) as conn:
print("Install sd-masonry...")
c = conn.cursor()
# Create the 'version' table if it doesn't exist
c.execute('''
CREATE TABLE IF NOT EXISTS version (
id INTEGER PRIMARY KEY,
schema_version INTEGER
)
''')
# Check the current schema version
c.execute('''SELECT schema_version FROM version LIMIT 1''')
result = c.fetchone()
# If the 'version' table is empty, set the initial schema version
if result is None:
current_version = 0
c.execute('INSERT INTO version (schema_version) VALUES (?)', (0,))
else:
current_version = result[0]
print("Found version v{}".format(current_version))
# Setup our images db
if current_version == 0:
# Drop the table for those who already downloaded
c.execute('''
DROP TABLE IF EXISTS images
''')
# Create with new columns
c.execute('''
CREATE TABLE IF NOT EXISTS images (
id INTEGER PRIMARY KEY,
path TEXT,
width INTEGER,
height INTEGER,
geninfo TEXT
)
''')
current_version = current_version + 1
conn.commit()
# Update the 'version' table with the new version number
c.execute('UPDATE version SET schema_version = ?', (current_version,))
initialize_database()