docs: rewrite data-pipeline.md for Kaikki migration
This commit is contained in:
parent
87aeb072c5
commit
38d8b85228
4 changed files with 615 additions and 313 deletions
|
|
@ -64,6 +64,13 @@ CREATE TABLE IF NOT EXISTS model_cefr_votes (
|
|||
UNIQUE (translation_id, model_name)
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS model_translation_rejections (
|
||||
id INTEGER PRIMARY KEY,
|
||||
translation_id INTEGER NOT NULL REFERENCES translations(id),
|
||||
model_name TEXT NOT NULL,
|
||||
UNIQUE (translation_id, model_name)
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS generated_glosses (
|
||||
id INTEGER PRIMARY KEY,
|
||||
source_id TEXT NOT NULL REFERENCES synsets(source_id),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue