From f284bf4047a648065fc4d438aac67e87cb99f237 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Wed, 30 Dec 2015 12:35:47 +0100 Subject: [PATCH] Added sample SQL data for captcha setting --- rsc/db/sample-data.sql | 3 ++- src/assets/sql/data.sql | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/rsc/db/sample-data.sql b/rsc/db/sample-data.sql index 7870efdf..8f61e722 100644 --- a/rsc/db/sample-data.sql +++ b/rsc/db/sample-data.sql @@ -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` diff --git a/src/assets/sql/data.sql b/src/assets/sql/data.sql index 698c323d..e3ffd5ed 100644 --- a/src/assets/sql/data.sql +++ b/src/assets/sql/data.sql @@ -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');