Fix a syntax bug in 'database/schema.sql'.

'''
ERROR 1064 (42000) at line 170: You have an error in your SQL syntax;
check the manual that corresponds to your MySQL server version for the
right syntax to use near
    ') ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1'
at line 9
'''
This commit is contained in:
lazyparser 2015-04-15 11:20:59 +08:00
Родитель 849173093f
Коммит 89f3e46204
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -174,7 +174,7 @@ CREATE TABLE `awfy_breakdown` (
`score` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `build_id` (`build_id`),
KEY `suite_test_id` (`suite_test_id`),
KEY `suite_test_id` (`suite_test_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------