Fixed amb1735 - Client Prefs create table queries typo

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402241
This commit is contained in:
Matt Woodrow 2008-06-01 22:31:58 +00:00
parent 953da3f6e0
commit 46ce91c4f7

View File

@ -95,7 +95,7 @@ bool ClientPrefs::SDK_OnLoad(char *error, size_t maxlength, bool late)
TQueryOp *op = new TQueryOp(
Database,
"CREATE TABLE sm_cookies IF NOT EXISTS \
"CREATE TABLE IF NOT EXISTS sm_cookies \
( \
id INTEGER PRIMARY KEY AUTOINCREMENT, \
name varchar(30) NOT NULL UNIQUE, \
@ -109,7 +109,7 @@ bool ClientPrefs::SDK_OnLoad(char *error, size_t maxlength, bool late)
op = new TQueryOp(
Database,
"CREATE TABLE sm_cookie_cache IF NOT EXISTS \
"CREATE TABLE IF NOT EXISTS sm_cookie_cache \
( \
player varchar(65) NOT NULL, \
cookie_id int(10) NOT NULL, \
@ -128,7 +128,7 @@ bool ClientPrefs::SDK_OnLoad(char *error, size_t maxlength, bool late)
TQueryOp *op = new TQueryOp(
Database,
"CREATE TABLE sm_cookies IF NOT EXISTS \
"CREATE TABLE IF NOT EXISTS sm_cookies \
( \
id INTEGER unsigned NOT NULL auto_increment, \
name varchar(30) NOT NULL UNIQUE, \
@ -143,7 +143,7 @@ bool ClientPrefs::SDK_OnLoad(char *error, size_t maxlength, bool late)
op = new TQueryOp(
Database,
"CREATE TABLE sm_cookie_cache IF NOT EXISTS \
"CREATE TABLE IF NOT EXISTS sm_cookie_cache \
( \
player varchar(65) NOT NULL, \
cookie_id int(10) NOT NULL, \