4 Language hasMany TranslationFile
7 DB Table: `translation_files`
9 TranslationFile belongsTo Language
10 TranslationFile hasMany ImportedTranslationFile
11 TranslationFile hasMany Identifier
13 Name: ImportedTranslationFile
14 DB Table: `imported_translation_files`
16 TranslationFile belongsTo TranslationFile
17 TranslationFile hasMany FileIdentifier
20 DB Table: `identifiers`
22 Identifier belongsTo TranslationFile
23 Identifier hasMany Translation
24 Identifier hasMany Comment
25 Identifier hasMany FileIdentifier
26 Identifier hasMany IdentifierColumn
27 Identifier hasOne BestTranslation
29 Name: IdentifierColumn
30 DB Table: `identifier_columns`
32 IdentifierColumn belongsTo Identifier
33 IdentifierColumn hasMany Translation
36 DB Table: `file_identifiers`
38 FileIdentifier belongsTo ImportedTranslationFile
39 FileIdentifier belongsTo Identifier
42 DB Table: `translations`
44 Translation belongsTo Identifier
45 Translation belongsTo IdentifierColumn
46 Translation belongsTo User
47 Translation belongsTo ParentTranslation
48 Translation hasMany Vote
49 Translation hasMany ChildTranslation
54 User hasMany Translation
61 Vote belongsTo Translation
67 Comment belongsTo Identifier
68 Comment belongsTo User