2 -- @description: Brieffunktion Felder
 
   3 -- @depends: release_3_2_0
 
   6   id INTEGER NOT NULL DEFAULT nextval('id'),
 
   7   vc_id INTEGER NOT NULL,
 
  17   text_created_for TEXT,
 
  26   employee_id INTEGER NOT NULL,
 
  27   employee_position TEXT,
 
  29   salesman_id INTEGER NOT NULL,
 
  30   salesman_position TEXT,
 
  32   itime TIMESTAMP DEFAULT now(),
 
  36   FOREIGN KEY (employee_id) REFERENCES employee (id),
 
  37   FOREIGN KEY (salesman_id) REFERENCES employee (id)
 
  40 ALTER TABLE defaults ADD COLUMN letternumber integer;