Added sample SQL data for captcha setting

This commit is contained in:
Alex Tselegidis 2015-12-30 12:35:47 +01:00
parent acd2ffba05
commit f284bf4047
2 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,8 @@ INSERT INTO `ea_settings` (`id`, `name`, `value`) VALUES
(5, 'company_link', 'http://www.abc-company.ea'),
(6, 'google_analytics_code', ''),
(7, 'customer_notifications', '1'),
(8, 'date_format', 'DMY');
(8, 'date_format', 'DMY'),
(8, 'require_captcha', '1');
--
-- Dumping data for table `ea_roles`

View File

@ -1,4 +1,5 @@
INSERT INTO ea_settings (name, value) VALUES
('google_analytics_code', ''),
('customer_notifications', '1'),
('date_format', 'DMY');
('date_format', 'DMY'),
('require_captcha', '1');