Added sample SQL data for captcha setting
This commit is contained in:
parent
acd2ffba05
commit
f284bf4047
2 changed files with 4 additions and 2 deletions
|
@ -24,7 +24,8 @@ INSERT INTO `ea_settings` (`id`, `name`, `value`) VALUES
|
||||||
(5, 'company_link', 'http://www.abc-company.ea'),
|
(5, 'company_link', 'http://www.abc-company.ea'),
|
||||||
(6, 'google_analytics_code', ''),
|
(6, 'google_analytics_code', ''),
|
||||||
(7, 'customer_notifications', '1'),
|
(7, 'customer_notifications', '1'),
|
||||||
(8, 'date_format', 'DMY');
|
(8, 'date_format', 'DMY'),
|
||||||
|
(8, 'require_captcha', '1');
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Dumping data for table `ea_roles`
|
-- Dumping data for table `ea_roles`
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
INSERT INTO ea_settings (name, value) VALUES
|
INSERT INTO ea_settings (name, value) VALUES
|
||||||
('google_analytics_code', ''),
|
('google_analytics_code', ''),
|
||||||
('customer_notifications', '1'),
|
('customer_notifications', '1'),
|
||||||
('date_format', 'DMY');
|
('date_format', 'DMY'),
|
||||||
|
('require_captcha', '1');
|
||||||
|
|
Loading…
Reference in a new issue