tsusp and mtime field added to users table (disable timeout and last access), rename...
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Thu, 10 Feb 2011 17:56:01 +0000 (18:56 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Thu, 10 Feb 2011 17:56:01 +0000 (18:56 +0100)
sql/sql.d/001-struct.sql

index 024d58f..3639258 100644 (file)
@@ -4,15 +4,19 @@
 
 DROP TABLE #PFX#users;
 CREATE TABLE #PFX#users (
-                        code  SERIAL PRIMARY KEY,
-                        login text UNIQUE,
-                        pass  text,
-                        email text UNIQUE,
-                        type  integer
-                        );
+       code   SERIAL PRIMARY KEY,
+       login  text UNIQUE,
+       pass   text,
+       email  text UNIQUE,
+       type   integer,
+       tsusp  timestamp DEFAULT to_timestamp(0) -- disable timeout
+       mtime  timestamp DEFAULT to_timestamp(0) -- last access
+       );
 
 DROP TABLE #PFX#groups;
 CREATE TABLE #PFX#groups (
-                        code  SERIAL PRIMARY KEY,
-                        gname text
-                        );
+       code   SERIAL PRIMARY KEY,
+       name   text
+       );
+
+