From 4c376fb2adde669f34c4b17e059e65a174629b54 Mon Sep 17 00:00:00 2001 From: Robert Zorko Date: Tue, 29 Sep 2015 15:31:42 +0200 Subject: added settings to the user session and the login function now also returns those settings - currently only gui language is implemented. The create.sql script is updated for that change as well. --- db/create.sql | 1 + 1 file changed, 1 insertion(+) (limited to 'db') diff --git a/db/create.sql b/db/create.sql index e720238..57c3647 100644 --- a/db/create.sql +++ b/db/create.sql @@ -33,6 +33,7 @@ create table codeq_user ( is_active bool not null, date_joined timestamp not null, last_login timestamp not null, + gui_lang varchar(2), constraint codeq_user_pk primary key (id), constraint codeq_user_uq1 unique (username) ); -- cgit v1.2.1