forked from mirrors/easyappointments
Typo corrections in the structure.sql
This commit is contained in:
parent
0e3ff2493e
commit
212f4e0d4e
1 changed files with 4 additions and 4 deletions
|
@ -9,9 +9,9 @@ CREATE TABLE IF NOT EXISTS `ea_appointments` (
|
||||||
`notes` TEXT,
|
`notes` TEXT,
|
||||||
`hash` TEXT,
|
`hash` TEXT,
|
||||||
`is_unavailable` TINYINT(4) DEFAULT '0',
|
`is_unavailable` TINYINT(4) DEFAULT '0',
|
||||||
`id_users_provider` INT(11)
|
`id_users_provider` INT(11),
|
||||||
`id_users_customer` INT(11)
|
`id_users_customer` INT(11),
|
||||||
`id_services` INT(11)
|
`id_services` INT(11),
|
||||||
`id_google_calendar` TEXT,
|
`id_google_calendar` TEXT,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
KEY `id_users_customer` (`id_users_customer`),
|
KEY `id_users_customer` (`id_users_customer`),
|
||||||
|
@ -65,7 +65,7 @@ CREATE TABLE IF NOT EXISTS `ea_services` (
|
||||||
`description` TEXT,
|
`description` TEXT,
|
||||||
`availabilities_type` VARCHAR(32) DEFAULT 'flexible',
|
`availabilities_type` VARCHAR(32) DEFAULT 'flexible',
|
||||||
`attendants_number` INT(11) DEFAULT '1',
|
`attendants_number` INT(11) DEFAULT '1',
|
||||||
`id_service_categories` INT(11)
|
`id_service_categories` INT(11),
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
KEY `id_service_categories` (`id_service_categories`)
|
KEY `id_service_categories` (`id_service_categories`)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue