typo fixed
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Mon, 14 Feb 2011 07:27:41 +0000 (08:27 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Mon, 14 Feb 2011 07:27:41 +0000 (08:27 +0100)
sql/sql.d/001-struct.sql

index 3639258..302804e 100644 (file)
@@ -9,8 +9,8 @@ CREATE TABLE #PFX#users (
        pass   text,
        email  text UNIQUE,
        type   integer,
-       tsusp  timestamp DEFAULT to_timestamp(0) -- disable timeout
-       mtime  timestamp DEFAULT to_timestamp(0) -- last access
+       tsusp  timestamp DEFAULT to_timestamp(0), -- disable timeout
+       mtime  timestamp DEFAULT to_timestamp(0)  -- last access
        );
 
 DROP TABLE #PFX#groups;