db: Fix missing commas in AuthTuples table creation

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2009-12-27 15:24:55 +01:00 committed by Harald Welte
parent 1f6c11fda8
commit deebb113ac
1 changed files with 3 additions and 3 deletions

View File

@ -133,9 +133,9 @@ static char *create_stmts[] = {
"CREATE TABLE IF NOT EXISTS AuthTuples ("
"id INTEGER PRIMARY KEY AUTOINCREMENT, "
"subscriber_id NUMERIC UNIQUE NOT NULL, "
"rand BLOB"
"sres BLOB"
"kc BLOB"
"rand BLOB, "
"sres BLOB, "
"kc BLOB "
")",
};