1 -- @tag: generic_translations
 
   2 -- @description: Allgemeine Tabelle fuer Uebersetzungen
 
   3 -- @depends: release_2_6_0
 
   4 CREATE TABLE generic_translations (
 
   7   translation_type varchar(100) NOT NULL,
 
   8   translation_id integer,
 
  12   FOREIGN KEY (language_id) REFERENCES language (id)
 
  14 CREATE INDEX generic_translations_type_id_idx ON generic_translations (language_id, translation_type, translation_id);