From 079288a0a8a4c1767b0c0643488095948fa145d5 Mon Sep 17 00:00:00 2001 From: Robbie Antenesse Date: Sun, 7 Jul 2019 00:00:53 -0600 Subject: [PATCH] Add translations to structure.sql --- src/structure.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/src/structure.sql b/src/structure.sql index 3511548..8deeea9 100644 --- a/src/structure.sql +++ b/src/structure.sql @@ -41,6 +41,7 @@ CREATE TABLE IF NOT EXISTS `dictionary_linguistics` ( `nucleus` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Comma-separated', `coda` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Comma-separated', `phonotactics_notes` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'Markdown', + `translations` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'Newline-separated; Translates left character(s) to right character(s)', `orthography_notes` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'Markdown', `grammar_notes` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'Markdown', UNIQUE KEY `dictionary` (`dictionary`)