summaryrefslogtreecommitdiff
path: root/lorrycontroller/statedb.py
diff options
context:
space:
mode:
Diffstat (limited to 'lorrycontroller/statedb.py')
-rw-r--r--lorrycontroller/statedb.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lorrycontroller/statedb.py b/lorrycontroller/statedb.py
index 4b00db0..1b885d9 100644
--- a/lorrycontroller/statedb.py
+++ b/lorrycontroller/statedb.py
@@ -95,10 +95,6 @@ class StateDB(object):
logging.debug('Initialising tables in database')
c = self._conn.cursor()
- # Table for storing database schema version.
- c.execute('CREATE TABLE version (running INT)')
- c.execute('INSERT INTO version VALUES (1)')
-
# Table for holding the "are we scheduling jobs" value.
c.execute('CREATE TABLE running_queue (running INT)')
c.execute('INSERT INTO running_queue VALUES (1)')