Applied several patches

This commit is contained in:
thomascube
2006-02-19 18:34:34 +00:00
parent 0615a69974
commit f88d417c96
10 changed files with 162 additions and 39 deletions

View File

@@ -124,7 +124,7 @@ CREATE SEQUENCE cache_ids
CREATE TABLE "cache" (
cache_id integer DEFAULT nextval('cache_ids'::text) PRIMARY KEY,
user_id integer NOT NULL REFERENCES users (user_id),
session_id character varying(40) REFERENCES "session" (session_id),
session_id character varying(40) REFERENCES "session" (sess_id),
cache_key character varying(128) DEFAULT ''::character varying NOT NULL,
created timestamp with time zone DEFAULT now() NOT NULL,
data text NOT NULL