git.schokokeks.org
Repositories
Help
Report an Issue
fs-words.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
9815a42
Branches
Tags
develop-client_server
master
typescript
fs-words.git
source
sql
concept
setup-translations.sql
[add] typescript logic
Christian Fraß
commited
9815a42
at 2021-03-03 00:27:18
setup-translations.sql
Blame
History
Raw
CREATE TABLE IF NOT EXISTS `concept_translations`( `id` INTEGER PRIMARY KEY AUTOINCREMENT , `concept_id` INTEGER NOT NULL , `language_id` INTEGER NOT NULL , `value` TEXT NOT NULL , FOREIGN KEY (`language_id`) REFERENCES `languages`(`id`) , FOREIGN KEY (`concept_id`) REFERENCES `concepts`(`id`) ) ;