mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Fixes #43 problem with warnings.
This commit is contained in:
parent
3a5227f687
commit
9918631c0f
2 changed files with 0 additions and 23 deletions
|
@ -1,14 +1,3 @@
|
||||||
-- ----------------------------------------------------------------------------
|
|
||||||
-- Easy!Appointments - Open Source Web Scheduler
|
|
||||||
--
|
|
||||||
-- @package EasyAppointments
|
|
||||||
-- @author A.Tselegidis <alextselegidis@gmail.com>
|
|
||||||
-- @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
|
|
||||||
-- @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
||||||
-- @link http://easyappointments.org
|
|
||||||
-- @since v1.1.0
|
|
||||||
-- ----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
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'),
|
||||||
|
|
|
@ -1,18 +1,6 @@
|
||||||
-- ----------------------------------------------------------------------------
|
|
||||||
-- Easy!Appointments - Open Source Web Scheduler
|
|
||||||
--
|
|
||||||
-- @package EasyAppointments
|
|
||||||
-- @author A.Tselegidis <alextselegidis@gmail.com>
|
|
||||||
-- @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
|
|
||||||
-- @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
||||||
-- @link http://easyappointments.org
|
|
||||||
-- @since v1.0.0
|
|
||||||
-- ----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
||||||
SET time_zone = "+00:00";
|
SET time_zone = "+00:00";
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `ea_appointments` (
|
CREATE TABLE IF NOT EXISTS `ea_appointments` (
|
||||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`book_datetime` datetime DEFAULT NULL,
|
`book_datetime` datetime DEFAULT NULL,
|
||||||
|
|
Loading…
Reference in a new issue