2013-04-14 22:42:40 +03:00
|
|
|
|
-- phpMyAdmin SQL Dump
|
2013-09-13 16:21:03 +03:00
|
|
|
|
-- version 3.5.1
|
2013-04-14 22:42:40 +03:00
|
|
|
|
-- http://www.phpmyadmin.net
|
|
|
|
|
--
|
|
|
|
|
-- Φιλοξενητής: localhost
|
2013-09-13 16:21:03 +03:00
|
|
|
|
-- Χρόνος δημιουργίας: 13 Σεπ 2013 στις 16:10:44
|
|
|
|
|
-- Έκδοση διακομιστή: 5.5.24-log
|
|
|
|
|
-- Έκδοση PHP: 5.4.3
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
2013-09-13 16:21:03 +03:00
|
|
|
|
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
2013-04-14 22:42:40 +03:00
|
|
|
|
SET time_zone = "+00:00";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
|
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
|
|
|
/*!40101 SET NAMES utf8 */;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Βάση: `easy_appointments`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_appointments`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_appointments` (
|
|
|
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
2013-06-08 12:54:45 +03:00
|
|
|
|
`book_datetime` datetime DEFAULT NULL,
|
2013-04-14 22:42:40 +03:00
|
|
|
|
`start_datetime` datetime DEFAULT NULL,
|
|
|
|
|
`end_datetime` datetime DEFAULT NULL,
|
2013-04-20 20:20:16 +03:00
|
|
|
|
`notes` text,
|
2013-06-08 12:54:45 +03:00
|
|
|
|
`hash` text,
|
2013-07-09 17:46:48 +03:00
|
|
|
|
`is_unavailable` tinyint(4) DEFAULT '0',
|
|
|
|
|
`id_users_provider` bigint(20) unsigned DEFAULT NULL,
|
|
|
|
|
`id_users_customer` bigint(20) unsigned DEFAULT NULL,
|
|
|
|
|
`id_services` bigint(20) unsigned DEFAULT NULL,
|
2013-06-19 22:29:00 +03:00
|
|
|
|
`id_google_calendar` text,
|
2013-04-14 22:42:40 +03:00
|
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
|
KEY `id_users_customer` (`id_users_customer`),
|
|
|
|
|
KEY `id_services` (`id_services`),
|
|
|
|
|
KEY `id_users_provider` (`id_users_provider`)
|
2013-09-13 16:21:03 +03:00
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=41 ;
|
2013-09-12 11:20:31 +03:00
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_appointments`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
INSERT INTO `ea_appointments` (`id`, `book_datetime`, `start_datetime`, `end_datetime`, `notes`, `hash`, `is_unavailable`, `id_users_provider`, `id_users_customer`, `id_services`, `id_google_calendar`) VALUES
|
2013-09-13 16:21:03 +03:00
|
|
|
|
(21, '2013-09-13 12:02:18', '2013-09-13 15:00:00', '2013-09-13 17:00:00', '', 'be278cf3c1d617fc372d89d75d5fd26d', 0, 2, 21, 4, 'e2c7abe3eket7ip9c58lllt3c8'),
|
|
|
|
|
(37, '2013-09-13 13:47:54', '2013-09-14 11:30:00', '2013-09-14 13:30:00', 'Γυμναστήριο ', '3ace1513fdf92a4983b7ae719a8475b5', 1, 2, NULL, NULL, 'cqm0t14p50d0917ghkirtruuno'),
|
|
|
|
|
(38, '2013-09-13 13:47:54', '2013-09-14 15:00:00', '2013-09-14 18:00:00', 'Ε!Α ', '3ace1513fdf92a4983b7ae719a8475b5', 1, 2, NULL, NULL, 'vs0btdvi34t73rvkeubh77ln40'),
|
|
|
|
|
(39, '2013-09-13 15:39:44', '2013-09-13 17:00:00', '2013-09-13 17:20:00', 'This is a test appt.', '6fd60f567310511d8f2fb4ff4c787d5e', 0, 2, 22, 3, NULL),
|
|
|
|
|
(40, '2013-09-13 15:50:14', '2013-09-14 10:00:00', '2013-09-14 11:00:00', 'heart decease', '39b81301e5bb1a82f77bd23d07ec63ce', 0, 4, 23, 2, NULL);
|
2013-07-09 17:46:48 +03:00
|
|
|
|
|
2013-04-14 22:42:40 +03:00
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_roles`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_roles` (
|
|
|
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`name` varchar(256) DEFAULT NULL,
|
2013-04-20 20:20:16 +03:00
|
|
|
|
`slug` varchar(256) DEFAULT NULL,
|
2013-04-14 22:42:40 +03:00
|
|
|
|
`is_admin` tinyint(4) DEFAULT NULL COMMENT '0',
|
|
|
|
|
`services` int(4) DEFAULT NULL COMMENT '0',
|
|
|
|
|
`providers` int(4) DEFAULT NULL COMMENT '0',
|
|
|
|
|
`customers` int(4) DEFAULT NULL COMMENT '0',
|
|
|
|
|
`notifications` int(4) DEFAULT NULL COMMENT '0',
|
|
|
|
|
`appointments` int(4) DEFAULT NULL COMMENT '0',
|
|
|
|
|
PRIMARY KEY (`id`)
|
2013-09-12 11:20:31 +03:00
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_roles`
|
|
|
|
|
--
|
|
|
|
|
|
2013-04-20 20:20:16 +03:00
|
|
|
|
INSERT INTO `ea_roles` (`id`, `name`, `slug`, `is_admin`, `services`, `providers`, `customers`, `notifications`, `appointments`) VALUES
|
2013-09-12 11:20:31 +03:00
|
|
|
|
(1, 'Administrator', 'admin', 1, 15, 15, 15, 15, 15),
|
2013-04-20 20:20:16 +03:00
|
|
|
|
(2, 'Provider', 'provider', 0, 0, 0, 15, 0, 15),
|
2013-09-12 11:20:31 +03:00
|
|
|
|
(3, 'Customer', 'customer', 0, 0, 0, 0, 0, 0),
|
|
|
|
|
(4, 'Secretary', 'secretary', 0, 0, 0, 15, 15, 15);
|
|
|
|
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_secretaries_providers`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_secretaries_providers` (
|
|
|
|
|
`id_users_secretary` bigint(20) unsigned NOT NULL,
|
|
|
|
|
`id_users_provider` bigint(20) unsigned NOT NULL,
|
|
|
|
|
PRIMARY KEY (`id_users_secretary`,`id_users_provider`),
|
|
|
|
|
KEY `fk_ea_secretaries_providers_1` (`id_users_secretary`),
|
|
|
|
|
KEY `fk_ea_secretaries_providers_2` (`id_users_provider`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_secretaries_providers`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
INSERT INTO `ea_secretaries_providers` (`id_users_secretary`, `id_users_provider`) VALUES
|
|
|
|
|
(20, 2),
|
2013-09-13 16:21:03 +03:00
|
|
|
|
(20, 3);
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_services`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_services` (
|
|
|
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`name` varchar(256) DEFAULT NULL,
|
|
|
|
|
`duration` int(11) DEFAULT NULL,
|
|
|
|
|
`price` decimal(10,2) DEFAULT NULL,
|
|
|
|
|
`currency` varchar(32) DEFAULT NULL,
|
|
|
|
|
`description` text,
|
|
|
|
|
`id_service_categories` bigint(20) unsigned DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
|
KEY `id_service_categories` (`id_service_categories`)
|
2013-09-13 16:21:03 +03:00
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_services`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
INSERT INTO `ea_services` (`id`, `name`, `duration`, `price`, `currency`, `description`, `id_service_categories`) VALUES
|
2013-09-13 16:21:03 +03:00
|
|
|
|
(2, 'Heart Examination', 30, '40.00', 'Euro', 'Checkup for heart problems.', NULL),
|
|
|
|
|
(3, 'Neurological Examination', 20, '35.00', 'Euro', 'Neurological tests for the patient.', NULL),
|
|
|
|
|
(4, 'General Examination', 30, '30.00', 'Euro', 'General patient examination. Includes blood, pressure and eyes tests.', 2);
|
2013-04-20 20:20:16 +03:00
|
|
|
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_services_providers`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_services_providers` (
|
|
|
|
|
`id_users` bigint(20) unsigned NOT NULL,
|
|
|
|
|
`id_services` bigint(20) unsigned NOT NULL,
|
|
|
|
|
PRIMARY KEY (`id_users`,`id_services`),
|
|
|
|
|
KEY `id_services` (`id_services`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_services_providers`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
INSERT INTO `ea_services_providers` (`id_users`, `id_services`) VALUES
|
|
|
|
|
(3, 2),
|
|
|
|
|
(4, 2),
|
|
|
|
|
(2, 3),
|
2013-09-13 16:21:03 +03:00
|
|
|
|
(3, 3),
|
|
|
|
|
(2, 4);
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_service_categories`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_service_categories` (
|
|
|
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`name` varchar(256) DEFAULT NULL,
|
|
|
|
|
`description` text,
|
|
|
|
|
PRIMARY KEY (`id`)
|
2013-09-13 16:21:03 +03:00
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_service_categories`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
INSERT INTO `ea_service_categories` (`id`, `name`, `description`) VALUES
|
|
|
|
|
(2, 'General Services', 'Contains the general services of our company.'),
|
|
|
|
|
(5, 'test1', 'test1'),
|
|
|
|
|
(7, 'test2', 'test2');
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_settings`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_settings` (
|
|
|
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`name` varchar(512) DEFAULT NULL,
|
|
|
|
|
`value` longtext,
|
|
|
|
|
PRIMARY KEY (`id`)
|
2013-06-19 22:29:00 +03:00
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_settings`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
INSERT INTO `ea_settings` (`id`, `name`, `value`) VALUES
|
2013-09-13 16:21:03 +03:00
|
|
|
|
(1, 'company_name', 'Easy!Appointments & Co'),
|
2013-06-08 12:54:45 +03:00
|
|
|
|
(2, 'company_working_plan', '{"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"}]},"sunday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]}}'),
|
2013-09-13 16:21:03 +03:00
|
|
|
|
(3, 'company_email', 'info@alextselegidis.com'),
|
|
|
|
|
(8, 'company_link', 'http://easyappointments.org'),
|
2013-06-08 12:54:45 +03:00
|
|
|
|
(9, 'book_advance_timeout', '30');
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_users`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_users` (
|
|
|
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`first_name` varchar(256) DEFAULT NULL,
|
|
|
|
|
`last_name` varchar(512) DEFAULT NULL,
|
|
|
|
|
`email` varchar(512) DEFAULT NULL,
|
|
|
|
|
`mobile_number` varchar(128) DEFAULT NULL,
|
|
|
|
|
`phone_number` varchar(128) DEFAULT NULL,
|
|
|
|
|
`address` varchar(256) DEFAULT NULL,
|
|
|
|
|
`city` varchar(256) DEFAULT NULL,
|
|
|
|
|
`state` varchar(128) DEFAULT NULL,
|
|
|
|
|
`zip_code` varchar(64) DEFAULT NULL,
|
|
|
|
|
`notes` text,
|
|
|
|
|
`id_roles` bigint(20) unsigned NOT NULL,
|
|
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
|
KEY `id_roles` (`id_roles`)
|
2013-09-13 16:21:03 +03:00
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=24 ;
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_users`
|
|
|
|
|
--
|
|
|
|
|
|
2013-06-08 12:54:45 +03:00
|
|
|
|
INSERT INTO `ea_users` (`id`, `first_name`, `last_name`, `email`, `mobile_number`, `phone_number`, `address`, `city`, `state`, `zip_code`, `notes`, `id_roles`) VALUES
|
2013-09-13 16:21:03 +03:00
|
|
|
|
(2, 'Ned', 'Janger', 'alextselegidis@gmail.com', '659875666', '785448465', 'Kloesel', 'Berlin', '', '23980', '', 2),
|
|
|
|
|
(3, 'Urlich', 'Setzel', 'u.setzel@piorin.com', '23908252398', '20923798723', 'Groundliche Str. 23', 'Munich', 'Bayern', '86895', '', 2),
|
|
|
|
|
(4, 'Brandon', 'Clod', 'b.clod@besters.org', '239072439', '858754487', 'Wellin Str 8', 'Plymouth', '', '20940', '', 2),
|
|
|
|
|
(18, 'Tod', 'Cliffer', 'info@alextselegidis.com', '987568857', '875986878', 'Yourd Str 98', 'Blackpool', '', '09234', '', 1),
|
|
|
|
|
(20, 'Sonia', 'Sterling', 's.sterling@reo.com', '584256658', '4265462587', '', '', '', '', '', 4),
|
|
|
|
|
(21, 'Alex', 'Tselegidis', 'info@alextselegidis.com', NULL, '98765465712', '', '', NULL, '', '', 3),
|
|
|
|
|
(22, 'John', 'Doe', 'john.doe@oizent.com', NULL, '8757595445', 'Orizend 51', 'London', NULL, '56648', 'Test customer record.', 3),
|
|
|
|
|
(23, 'James', 'Goern', 'james.goern@softiner.com', NULL, '98654869544', 'Ureklin 09', 'New York', NULL, '56987', NULL, 3);
|
2013-06-08 12:54:45 +03:00
|
|
|
|
|
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Δομή πίνακα για τον πίνακα `ea_user_settings`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `ea_user_settings` (
|
|
|
|
|
`id_users` bigint(20) unsigned NOT NULL,
|
|
|
|
|
`username` varchar(256) DEFAULT NULL,
|
|
|
|
|
`password` varchar(512) DEFAULT NULL,
|
|
|
|
|
`working_plan` text,
|
|
|
|
|
`notifications` text,
|
2013-06-19 22:29:00 +03:00
|
|
|
|
`google_sync` tinyint(4) DEFAULT '0',
|
|
|
|
|
`google_token` text,
|
2013-07-15 10:32:19 +03:00
|
|
|
|
`sync_past_days` int(11) DEFAULT '5',
|
|
|
|
|
`sync_future_days` int(11) DEFAULT '5',
|
2013-06-08 12:54:45 +03:00
|
|
|
|
PRIMARY KEY (`id_users`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Άδειασμα δεδομένων του πίνακα `ea_user_settings`
|
|
|
|
|
--
|
|
|
|
|
|
2013-07-15 10:32:19 +03:00
|
|
|
|
INSERT INTO `ea_user_settings` (`id_users`, `username`, `password`, `working_plan`, `notifications`, `google_sync`, `google_token`, `sync_past_days`, `sync_future_days`) VALUES
|
2013-09-13 16:21:03 +03:00
|
|
|
|
(2, 'ned.janger', 'test', '{"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"}]},"sunday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]}}', '1', 0, NULL, 5, 5),
|
|
|
|
|
(3, 'u.setzel', 'test', '{"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"}]},"sunday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]}}', '1', 0, NULL, 5, 5),
|
|
|
|
|
(4, 'b.clod', 'test', '{"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"}]},"sunday":{"start":"09:00","end":"18:00","breaks":[{"start":"11:20","end":"11:30"},{"start":"14:30","end":"15:00"}]}}', '0', 0, NULL, 5, 5),
|
|
|
|
|
(18, 't.cliffer', 'test', NULL, '0', 0, NULL, 5, 5),
|
|
|
|
|
(20, 's.sterling', 'test', NULL, '0', 0, NULL, 5, 5);
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Περιορισμοί για άχρηστους πίνακες
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Περιορισμοί για πίνακα `ea_appointments`
|
|
|
|
|
--
|
|
|
|
|
ALTER TABLE `ea_appointments`
|
|
|
|
|
ADD CONSTRAINT `ea_appointments_ibfk_2` FOREIGN KEY (`id_users_customer`) REFERENCES `ea_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
|
|
|
ADD CONSTRAINT `ea_appointments_ibfk_3` FOREIGN KEY (`id_services`) REFERENCES `ea_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
|
|
|
ADD CONSTRAINT `ea_appointments_ibfk_4` FOREIGN KEY (`id_users_provider`) REFERENCES `ea_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
|
|
2013-09-12 11:20:31 +03:00
|
|
|
|
--
|
|
|
|
|
-- Περιορισμοί για πίνακα `ea_secretaries_providers`
|
|
|
|
|
--
|
|
|
|
|
ALTER TABLE `ea_secretaries_providers`
|
|
|
|
|
ADD CONSTRAINT `fk_ea_secretaries_providers_1` FOREIGN KEY (`id_users_secretary`) REFERENCES `ea_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
|
|
|
ADD CONSTRAINT `fk_ea_secretaries_providers_2` FOREIGN KEY (`id_users_provider`) REFERENCES `ea_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
|
|
2013-04-14 22:42:40 +03:00
|
|
|
|
--
|
|
|
|
|
-- Περιορισμοί για πίνακα `ea_services`
|
|
|
|
|
--
|
|
|
|
|
ALTER TABLE `ea_services`
|
2013-09-13 16:21:03 +03:00
|
|
|
|
ADD CONSTRAINT `ea_services_ibfk_1` FOREIGN KEY (`id_service_categories`) REFERENCES `ea_service_categories` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;
|
2013-04-14 22:42:40 +03:00
|
|
|
|
|
2013-04-20 20:20:16 +03:00
|
|
|
|
--
|
|
|
|
|
-- Περιορισμοί για πίνακα `ea_services_providers`
|
|
|
|
|
--
|
|
|
|
|
ALTER TABLE `ea_services_providers`
|
|
|
|
|
ADD CONSTRAINT `ea_services_providers_ibfk_1` FOREIGN KEY (`id_users`) REFERENCES `ea_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
|
|
|
ADD CONSTRAINT `ea_services_providers_ibfk_2` FOREIGN KEY (`id_services`) REFERENCES `ea_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
|
|
2013-04-14 22:42:40 +03:00
|
|
|
|
--
|
|
|
|
|
-- Περιορισμοί για πίνακα `ea_users`
|
|
|
|
|
--
|
|
|
|
|
ALTER TABLE `ea_users`
|
|
|
|
|
ADD CONSTRAINT `ea_users_ibfk_1` FOREIGN KEY (`id_roles`) REFERENCES `ea_roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
|
|
2013-06-08 12:54:45 +03:00
|
|
|
|
--
|
|
|
|
|
-- Περιορισμοί για πίνακα `ea_user_settings`
|
|
|
|
|
--
|
|
|
|
|
ALTER TABLE `ea_user_settings`
|
|
|
|
|
ADD CONSTRAINT `ea_user_settings_ibfk_1` FOREIGN KEY (`id_users`) REFERENCES `ea_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
|
|
2013-04-14 22:42:40 +03:00
|
|
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
|
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
|
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|