Removed useless 'created' column from 'session' table (#5389)

This commit is contained in:
Aleksander Machniak
2016-08-12 13:02:39 +02:00
parent 6f150372e1
commit 0836b213db
12 changed files with 22 additions and 13 deletions

View File

@@ -37,7 +37,6 @@ CREATE TABLE users (
CREATE TABLE "session" (
sess_id varchar(128) DEFAULT '' PRIMARY KEY,
created timestamp with time zone DEFAULT now() NOT NULL,
changed timestamp with time zone DEFAULT now() NOT NULL,
ip varchar(41) NOT NULL,
vars text NOT NULL
@@ -292,4 +291,4 @@ CREATE TABLE "system" (
value text
);
INSERT INTO system (name, value) VALUES ('roundcube-version', '2015111100');
INSERT INTO system (name, value) VALUES ('roundcube-version', '2016081200');