Fix: Server setting

This commit is contained in:
2018-08-22 14:42:48 +09:00
parent 9529c0dc4b
commit 5c0e823980
5 changed files with 225 additions and 33 deletions
+43
View File
@@ -0,0 +1,43 @@
USE jisangs;
INSERT INTO `moty_active_app` (`ActiveAppID`, `MaestroID`, `AppID`) VALUES
(1, 1, 101),
(2, 1, 102),
(3, 1, 1),
(4, 1, 2),
(5, 1, 3),
(6, 1, 4),
(7, 1, 5),
(8, 1, 6),
(9, 1, 7),
(10, 1, 8),
(11, 1, 11),
(12, 1, 12),
(13, 1, 13),
(14, 1, 14),
(15, 1, 15),
(16, 1, 16),
(17, 1, 29),
(18, 1, 30),
(19, 1, 39),
(20, 1, 40),
(21, 3, 101),
(22, 3, 102),
(23, 3, 1),
(24, 3, 2),
(25, 3, 3),
(26, 3, 4),
(27, 3, 5),
(28, 3, 6),
(29, 3, 7),
(30, 3, 8),
(31, 3, 11),
(32, 3, 12),
(33, 3, 13),
(34, 3, 14),
(35, 3, 15),
(36, 3, 16),
(37, 3, 29),
(38, 3, 30),
(39, 3, 39),
(40, 3, 40);
+40 -32
View File
@@ -1,35 +1,43 @@
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),
INSERT INTO `moty_app` (`AppID`, `AppName`, `KoreanName`, `AppType`, `HowToPlay`) VALUES
(1, 'practice_korean_basic', '기본 자리', 1, ''),
(2, 'practice_korean_left_upper', '왼손 윗글쇠', 1, ''),
(3, 'practice_korean_second_finger', '검지 글쇠', 1, ''),
(4, 'practice_korean_right_upper', '오른손 윗글쇠', 1, ''),
(5, 'practice_korean_left_lower', '왼손 밑글쇠', 1, ''),
(6, 'practice_korean_right_lower', '오른손 밑글쇠', 1, ''),
(7, 'practice_korean_left_upper_double', '왼손 쌍자음', 1, ''),
(8, 'practice_korean_right_upper_double', '오른손 쌍모음', 1, ''),
(9, 'practice_korean_word', '', 1, ''),
(10, 'practice_korean_sentence', '', 1, ''),
(11, 'practice_english_basic', 'Basic', 2, ''),
(12, 'practice_english_left_upper', 'Left upper', 2, ''),
(13, 'practice_english_second_finger', 'Second finger', 2, ''),
(14, 'practice_english_right_upper', 'Right upper', 2, ''),
(15, 'practice_english_left_lower', 'Left lower', 2, ''),
(16, 'practice_english_right_lower', 'Right lower', 2, ''),
(19, 'practice_english_word', '', 2, ''),
(20, 'practice_english_sentence', '', 2, ''),
(21, 'test_korean_basic', '기본 자리', 11, ''),
(22, 'test_korean_left_upper', '왼손 윗글쇠', 11, ''),
(23, 'test_korean_second_finger', '검지 글쇠', 11, ''),
(24, 'test_korean_right_upper', '오른손 윗글쇠', 11, ''),
(25, 'test_korean_left_lower', '왼손 밑글쇠', 11, ''),
(26, 'test_korean_right_lower', '오른손 밑글쇠', 11, ''),
(27, 'test_korean_left_lower_double', '왼손 쌍자음', 11, ''),
(28, 'test_korean_right_lower_double', '오른손 쌍모음', 11, ''),
(29, 'test_korean_word', '시험 - 단어', 11, '단어를 빠르게 입력하세요.'),
(30, 'test_korean_sentence', '시험 - 문장', 11, '문장을 빠르게 입력하세요.'),
(31, 'test_english_basic', 'Basic', 12, ''),
(32, 'test_english_left_upper', 'Left upper', 12, ''),
(33, 'test_english_second_finger', 'Second finger', 12, ''),
(34, 'test_english_right_upper', 'Right upper', 12, ''),
(35, 'test_english_left_lower', 'Left lower', 12, ''),
(36, 'test_english_right_lower', 'Right lower', 12, ''),
(39, 'test_english_word', 'Word test', 12, '단어를 빠르게 입력하세요.'),
(40, 'test_english_sentence', 'Sentence test', 12, '문장을 빠르게 입력하세요.'),
(50, 'typing_venezia', '베네치아', 50, '물에 잠기지 않도록 잘 준비하세요.'),
(101, 'space_invaders', '외계인 침공', 100, '외계인이 나타났다!\\n마우스 왼쪽 버튼으로\\n외계인을 클릭해서 물리쳐 주세요.'),
(102, 'card_matching', '카드 짝 맞추기', 100, '같은 그림의 카드를 맞춰주세요.');
(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_active_app VALUES
(1, 1, 1),
(2, 1, 9),
(3, 1, 10),
(4, 1, 19),
(5, 1, 20),
(6, 1, 101);
+13
View File
@@ -0,0 +1,13 @@
USE jisangs;
INSERT INTO `moty_maestro` (`MaestroID`, `Name`, `Password`, `Email`, `AccountType`, `ActivateStatus`, `AvailableActivateDateTime`, `PlayerCount`, `AcceptClausesDateTime`, `MaestroTestID`) VALUES
(1, 'testplayer', '', 'test@jinaju.com', 100, 1, '2100-12-31 00:00:00', 0, '2018-05-27 17:13:35', 1),
(2, '마에스트로 체험', '', 'test@jinaju.com', 101, 1, '2100-12-31 00:00:00', 0, '2018-07-08 00:00:00', 2);
INSERT INTO `moty_player` (`PlayerID`, `MaestroID`, `Name`, `EnterCode`, `AccountType`) VALUES
(1, 1, '학생 체험', '', 0),
(2, 2, '마에스트로', '', 0);
INSERT INTO `moty_admin` (`AdminID`, `Name`, `Password`, `Email`, `AccountType`, `ActivateStatus`) VALUES
(1, 'jisangs', '*F2012B4E7A22EED437B79FB53DBF79C8AAC5034B', 'jisangs@gmail.com', 1, 1);