summary refs log tree commit diff stats
path: root/generator/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'generator/schema.sql')
-rw-r--r--generator/schema.sql8
1 files changed, 7 insertions, 1 deletions
diff --git a/generator/schema.sql b/generator/schema.sql index 33ebc28..2ac658c 100644 --- a/generator/schema.sql +++ b/generator/schema.sql
@@ -200,7 +200,6 @@ CREATE TABLE `parts` (
200 `part_index` INTEGER NOT NULL, 200 `part_index` INTEGER NOT NULL,
201 `type` INTEGER NOT NULL, 201 `type` INTEGER NOT NULL,
202 `role` VARCHAR(16), 202 `role` VARCHAR(16),
203 `selrestrs` BLOB,
204 `prepositions` BLOB, 203 `prepositions` BLOB,
205 `preposition_literality` SMALLINT, 204 `preposition_literality` SMALLINT,
206 `literal_value` VARCHAR(64) 205 `literal_value` VARCHAR(64)
@@ -215,3 +214,10 @@ CREATE TABLE `synrestrs` (
215); 214);
216 215
217CREATE INDEX `synrestrs_for` ON `synrestrs`(`part_id`); 216CREATE INDEX `synrestrs_for` ON `synrestrs`(`part_id`);
217
218CREATE TABLE `selrestrs` (
219 `part_id` INTEGER NOT NULL,
220 `selrestr` VARCHAR(32) NOT NULL
221);
222
223CREATE INDEX `selrestrs_for` ON `selrestrs`(`part_id`);