Renamed 'use' database column as that is a keyword in MySQL.

Reported by Stefan Tomas.
This commit is contained in:
Tobias Brunner
2011-09-01 09:59:37 +02:00
parent d0e1b237be
commit f35578acb1
3 changed files with 10 additions and 10 deletions
@@ -1,7 +1,7 @@
DROP TABLE IF EXISTS triplets;
CREATE TABLE triplets (
id TEXT NOT NULL,
use INTEGER NOT NULL,
used INTEGER NOT NULL,
rand BLOB NOT NULL,
sres BLOB NOT NULL,
kc BLOB NOT NULL
@@ -10,7 +10,7 @@ CREATE TABLE triplets (
DROP TABLE IF EXISTS quintuplets;
CREATE TABLE quintuplets (
id TEXT NOT NULL,
use INTEGER NOT NULL,
used INTEGER NOT NULL,
rand BLOB NOT NULL,
autn BLOB NOT NULL,
ck BLOB NOT NULL,