summaryrefslogtreecommitdiff
path: root/edt_db.py
diff options
context:
space:
mode:
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