git.schokokeks.org
Repositories
Help
Report an Issue
fs-words.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
faf7e12
Branches
Tags
develop-client_server
master
typescript
fs-words.git
server
source
sql
concept
setup-expressions.sql
[mov] server
Christian Fraß
commited
faf7e12
at 2021-03-08 23:05:42
setup-expressions.sql
Blame
History
Raw
CREATE TABLE IF NOT EXISTS `concept_expressions`( `id` INTEGER PRIMARY KEY AUTOINCREMENT , `concept_id` INTEGER NOT NULL , `expression_id` INTEGER NOT NULL , FOREIGN KEY (`concept_id`) REFERENCES `concepts`(`id`) , FOREIGN KEY (`expression_id`) REFERENCES `expression`(`id`) ) ;