Skip to content

thesis_type (Abschlussarbeitsart)

Diese Tabelle enthält die Arten von Betreuung der Abschlussarbeiten. Die IDs dieser Tabelle verweisen auf den Index im Attribut thesis_count in der Tabelle employment.

Diese Tabelle kann durch die Anwendung nicht verändert werden.

Attribute

Die Attribute haben folgende Bedeutung:

AttributTypBeschreibung
codetextKürzel
descriptiontextBezeichnung
idintegerID des Objekts
percentdouble precisionAnstellungsprozente pro Arbeit
payroll_type_idintegerFremdschlüssel auf payroll_type

Erzeugung

Die Tabelle wird mit folgendem SQL-Skript erstellt:

sql
create table pensen.thesis_type (
  id integer not null primary key,
  code text not null unique,
  description text not null,
  percent double precision,
  payroll_type_id integer not null,
  foreign key (payroll_type_id) references pensen.payroll_type (id)
);
grant select on table pensen.thesis_type to "pensenmanager";