summaryrefslogtreecommitdiff
path: root/edt_db.py
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2023-12-16 06:18:44 -0600
committerTinWoodman92 <chrhodgden@gmail.com>2023-12-16 06:18:44 -0600
commit158b36e51c8c2925d6c8af6e08380369d019378e (patch)
treef91fadecf85e982714927eb6ab451c9173e37de0 /edt_db.py
Initial commit
Diffstat (limited to 'edt_db.py')
-rw-r--r--edt_db.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/edt_db.py b/edt_db.py
new file mode 100644
index 0000000..dc4fc2b
--- /dev/null
+++ b/edt_db.py
@@ -0,0 +1,13 @@
+from sqlite3 import *
+
+con = connect('games.db')
+cur = con.cursor()
+
+qry_sql = """ALTER TABLE machines
+ADD export_alg_res Integer"""
+cur.execute(qry_sql)
+
+con.commit()
+con.close()
+con = None
+cur = None \ No newline at end of file