diff options
author | Sterling Hughes <sterling@php.net> | 2003-07-02 00:45:15 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2003-07-02 00:45:15 +0000 |
commit | 960ab9bd8d0e877d571b86448b52adfb68e5f164 (patch) | |
tree | 391d3b07b8d16d3f93be65214a7427f11bab014d /ext/sqlite/sess_sqlite.c | |
parent | 6129ddce1e782713bdbb67e60179e9badb2f27d1 (diff) | |
download | php-git-960ab9bd8d0e877d571b86448b52adfb68e5f164.tar.gz |
ws fix
Diffstat (limited to 'ext/sqlite/sess_sqlite.c')
-rw-r--r-- | ext/sqlite/sess_sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/sess_sqlite.c b/ext/sqlite/sess_sqlite.c index e10b0096fd..0425950c24 100644 --- a/ext/sqlite/sess_sqlite.c +++ b/ext/sqlite/sess_sqlite.c @@ -88,7 +88,7 @@ PS_OPEN_FUNC(sqlite) unclear as to how to check for a table's existence in SQLite -- that would be better here. */ sqlite_exec(db, "CREATE TABLE session_data (" - " sess_id TEXT PRIMARY KEY," + " sess_id TEXT PRIMARY KEY," " value TEXT, updated INTEGER " ")", NULL, NULL, NULL); |