Add: additional DB tables

This commit is contained in:
2018-05-29 15:31:18 +09:00
parent ef2218bfa6
commit a68d18df2d
4 changed files with 154 additions and 24 deletions
+35
View File
@@ -0,0 +1,35 @@
USE jisangs;
INSERT INTO moty_app VALUES
(1, 'korean_basic', 1),
(2, 'korean_left_upper', 1),
(3, 'korean_second_finger', 1),
(4, 'korean_right_upper', 1),
(5, 'korean_left_lower', 1),
(6, 'korean_right_lower', 1),
(7, 'korean_left_upper_double', 1),
(8, 'korean_right_upper_double', 1),
(9, 'korean_word', 1),
(10, 'korean_sentence', 1),
(11, 'english_basic', 1),
(12, 'english_left_upper', 1),
(13, 'english_second_finger', 1),
(14, 'english_right_upper', 1),
(15, 'english_left_lower', 1),
(16, 'english_right_lower', 1),
(19, 'english_word', 1),
(20, 'english_sentence', 1);
INSERT INTO moty_app VALUES
(101, 'space_invaders', 101);
INSERT INTO moty_activate_app VALUES
(1, 1, 1),
(2, 1, 9),
(3, 1, 10),
(4, 1, 19),
(5, 1, 20),
(6, 1, 101);