2017-08-15 09:20:23 +03:00
|
|
|
INSERT INTO
|
|
|
|
`ea_roles` (`id`, `name`, `slug`, `is_admin`, `appointments`, `customers`, `services`, `users`, `system_settings`, `user_settings`)
|
2017-06-18 19:30:12 +03:00
|
|
|
VALUES
|
|
|
|
(1, 'Administrator', 'admin', 1, 15, 15, 15, 15, 15, 15),
|
|
|
|
(2, 'Provider', 'provider', 0, 15, 15, 0, 0, 0, 15),
|
|
|
|
(3, 'Customer', 'customer', 0, 0, 0, 0, 0, 0, 0),
|
|
|
|
(4, 'Secretary', 'secretary', 0, 15, 15, 0, 0, 0, 15);
|
|
|
|
|
2017-08-15 09:20:23 +03:00
|
|
|
INSERT INTO
|
|
|
|
`ea_settings` (`name`, `value`)
|
|
|
|
VALUES
|
2017-06-18 19:30:12 +03:00
|
|
|
('company_working_plan',
|
2017-11-16 01:19:17 +03:00
|
|
|
'{"sunday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]},"monday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]},"tuesday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]},"wednesday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]},"thursday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]},"friday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]},"saturday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]}}'),
|
2017-06-18 19:30:12 +03:00
|
|
|
('book_advance_timeout', '30'),
|
2015-11-24 23:48:57 +02:00
|
|
|
('google_analytics_code', ''),
|
2015-12-02 00:08:04 +02:00
|
|
|
('customer_notifications', '1'),
|
2015-12-30 13:35:47 +02:00
|
|
|
('date_format', 'DMY'),
|
2018-03-07 00:46:33 +03:00
|
|
|
('time_format', 'regular'),
|
2018-06-24 14:17:04 +03:00
|
|
|
('require_captcha', '0'),
|
|
|
|
('display_cookie_notice', '0'),
|
|
|
|
('cookie_notice_content', 'Cookie notice content.'),
|
|
|
|
('display_terms_and_conditions', '0'),
|
|
|
|
('terms_and_conditions_content', 'Terms and conditions content.'),
|
|
|
|
('display_privacy_policy', '0'),
|
2018-06-29 01:41:17 +03:00
|
|
|
('privacy_policy_content', 'Privacy policy content.'),
|
2020-03-10 23:11:33 +03:00
|
|
|
('first_weekday', 'sunday'),
|
2020-03-27 13:02:06 +03:00
|
|
|
('require_phone_number', '1'),
|
2020-04-06 21:36:22 +03:00
|
|
|
('api_token', ''),
|
|
|
|
('display_any_provider', '1');
|
2017-11-16 01:02:46 +03:00
|
|
|
|
2020-04-06 21:36:22 +03:00
|
|
|
INSERT INTO `ea_migrations` VALUES ('19');
|