Auftrags-Controller: überflüssiges "die"-Statement entfernt
[kivitendo-erp.git] / sql / Pg-upgrade2 / todo_user_config.sql
1 -- @tag: todo_config
2 -- @description: Benutzerkonfiguration zur Aufgabenliste
3 -- @depends: release_2_4_3
4
5 CREATE TABLE todo_user_config (
6        employee_id                         integer NOT NULL,
7        show_after_login                    boolean DEFAULT TRUE,
8        show_follow_ups                     boolean DEFAULT TRUE,
9        show_follow_ups_login               boolean DEFAULT TRUE,
10        show_overdue_sales_quotations       boolean DEFAULT TRUE,
11        show_overdue_sales_quotations_login boolean DEFAULT TRUE,
12
13        FOREIGN KEY (employee_id) REFERENCES employee (id)
14 );