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, 8 insertions, 0 deletions
diff --git a/generator/schema.sql b/generator/schema.sql index 9a39944..1836c62 100644 --- a/generator/schema.sql +++ b/generator/schema.sql
@@ -184,6 +184,8 @@ DROP TABLE IF EXISTS `noun_pronunciations`;
184CREATE TABLE `noun_pronunciations` ( 184CREATE TABLE `noun_pronunciations` (
185 `noun_id` INTEGER NOT NULL, 185 `noun_id` INTEGER NOT NULL,
186 `pronunciation` VARCHAR(64) NOT NULL, 186 `pronunciation` VARCHAR(64) NOT NULL,
187 `prerhyme` VARCHAR(8),
188 `rhyme` VARCHAR(64),
187 FOREIGN KEY (`noun_id`) REFERENCES `nouns`(`noun_id`) 189 FOREIGN KEY (`noun_id`) REFERENCES `nouns`(`noun_id`)
188); 190);
189 191
@@ -191,6 +193,8 @@ DROP TABLE IF EXISTS `verb_pronunciations`;
191CREATE TABLE `verb_pronunciations` ( 193CREATE TABLE `verb_pronunciations` (
192 `verb_id` INTEGER NOT NULL, 194 `verb_id` INTEGER NOT NULL,
193 `pronunciation` VARCHAR(64) NOT NULL, 195 `pronunciation` VARCHAR(64) NOT NULL,
196 `prerhyme` VARCHAR(8),
197 `rhyme` VARCHAR(64),
194 FOREIGN KEY (`verb_id`) REFERENCES `verbs`(`verb_id`) 198 FOREIGN KEY (`verb_id`) REFERENCES `verbs`(`verb_id`)
195); 199);
196 200
@@ -198,6 +202,8 @@ DROP TABLE IF EXISTS `adjective_pronunciations`;
198CREATE TABLE `adjective_pronunciations` ( 202CREATE TABLE `adjective_pronunciations` (
199 `adjective_id` INTEGER NOT NULL, 203 `adjective_id` INTEGER NOT NULL,
200 `pronunciation` VARCHAR(64) NOT NULL, 204 `pronunciation` VARCHAR(64) NOT NULL,
205 `prerhyme` VARCHAR(8),
206 `rhyme` VARCHAR(64),
201 FOREIGN KEY (`adjective_id`) REFERENCES `adjectives`(`adjective_id`) 207 FOREIGN KEY (`adjective_id`) REFERENCES `adjectives`(`adjective_id`)
202); 208);
203 209
@@ -205,6 +211,8 @@ DROP TABLE IF EXISTS `adverb_pronunciations`;
205CREATE TABLE `adverb_pronunciations` ( 211CREATE TABLE `adverb_pronunciations` (
206 `adverb_id` INTEGER NOT NULL, 212 `adverb_id` INTEGER NOT NULL,
207 `pronunciation` VARCHAR(64) NOT NULL, 213 `pronunciation` VARCHAR(64) NOT NULL,
214 `prerhyme` VARCHAR(8),
215 `rhyme` VARCHAR(64),
208 FOREIGN KEY (`adverb_id`) REFERENCES `adverbs`(`adverb_id`) 216 FOREIGN KEY (`adverb_id`) REFERENCES `adverbs`(`adverb_id`)
209); 217);
210 218