2 -- @description: Benutzerkonfiguration zur Aufgabenliste
 
   3 -- @depends: release_2_4_3
 
   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,
 
  13        FOREIGN KEY (employee_id) REFERENCES employee (id)