fix sql table creation for 'Counters' table

This commit is contained in:
Harald Welte 2009-12-22 21:40:42 +01:00
parent ffa55a4e87
commit f9a43c45ea
1 changed files with 2 additions and 2 deletions

View File

@ -121,8 +121,8 @@ static char *create_stmts[] = {
"CREATE TABLE IF NOT EXISTS Counters ("
"id INTEGER PRIMARY KEY AUTOINCREMENT, "
"timestamp TIMESTAMP NOT NULL, "
"value INTEGER NOT NULL "
"name TEXT NOT NULL, "
"value INTEGER NOT NULL, "
"name TEXT NOT NULL "
")",
};