install/schemas/upgrade/1.1.4-1.1.5-postgresql.sql
author Dan
Tue, 12 Aug 2008 00:06:35 -0400
changeset 688 f2a824ce5f18
parent 685 17ebe24cdf85
child 711 f70d764aab33
permissions -rw-r--r--
Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)

ALTER TABLE {{TABLE_PREFIX}}session_keys ADD COLUMN key_type smallint NOT NULL DEFAULT 0;
UPDATE {{TABLE_PREFIX}}session_keys SET key_type = 2 WHERE auth_level > 2;