mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-22 07:52:29 +03:00
Added type field into the consent table (#480).
This commit is contained in:
parent
60f48e24ee
commit
2ddf7b118a
2 changed files with 2 additions and 0 deletions
|
@ -32,6 +32,7 @@ class Migration_Legal_contents extends CI_Migration {
|
||||||
`last_name` VARCHAR(256),
|
`last_name` VARCHAR(256),
|
||||||
`email` VARCHAR(512),
|
`email` VARCHAR(512),
|
||||||
`ip` VARCHAR(256),
|
`ip` VARCHAR(256),
|
||||||
|
`type` VARCHAR(256),
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
)
|
)
|
||||||
ENGINE = InnoDB
|
ENGINE = InnoDB
|
||||||
|
|
|
@ -30,6 +30,7 @@ CREATE TABLE IF NOT EXISTS `ea_consents` (
|
||||||
`last_name` VARCHAR(256),
|
`last_name` VARCHAR(256),
|
||||||
`email` VARCHAR(512),
|
`email` VARCHAR(512),
|
||||||
`ip` VARCHAR(256),
|
`ip` VARCHAR(256),
|
||||||
|
`type` VARCHAR(256),
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
)
|
)
|
||||||
ENGINE = InnoDB
|
ENGINE = InnoDB
|
||||||
|
|
Loading…
Reference in a new issue