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),
|
||||
`email` VARCHAR(512),
|
||||
`ip` VARCHAR(256),
|
||||
`type` VARCHAR(256),
|
||||
PRIMARY KEY (`id`)
|
||||
)
|
||||
ENGINE = InnoDB
|
||||
|
|
|
@ -30,6 +30,7 @@ CREATE TABLE IF NOT EXISTS `ea_consents` (
|
|||
`last_name` VARCHAR(256),
|
||||
`email` VARCHAR(512),
|
||||
`ip` VARCHAR(256),
|
||||
`type` VARCHAR(256),
|
||||
PRIMARY KEY (`id`)
|
||||
)
|
||||
ENGINE = InnoDB
|
||||
|
|
Loading…
Reference in a new issue