Initial commit

This commit is contained in:
2018-09-22 10:26:24 +08:00
commit 58bbbaf6de
114 changed files with 9151 additions and 0 deletions

4
server/translations.sql Normal file
View File

@@ -0,0 +1,4 @@
CREATE TABLE IF NOT EXISTS `translations` (
`sentence` varchar(100) COLLATE utf8_bin NOT NULL,
KEY `sentence` (`sentence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;