From 3ff8e0ba7a1e1f1a2ae96189ec2cf28ceb4e19c7 Mon Sep 17 00:00:00 2001 From: Ben Brown Date: Thu, 26 May 2016 21:14:22 -0700 Subject: Remove unused version table Change-Id: Id79d4d05a5cabd7f7a634dd0decdee6bd4005f29 --- lorrycontroller/statedb.py | 4 ---- 1 file changed, 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)') -- cgit v1.2.1