7 lines
104 B
SQL
7 lines
104 B
SQL
create table TrainingData(
|
|
Lang Text,
|
|
File Text,
|
|
Row int,
|
|
Sample text,
|
|
unique (Lang, File, Row)
|
|
);
|