Added type field into the consent table (#480).

This commit is contained in:
alext 2018-06-24 17:12:13 +02:00
parent 60f48e24ee
commit 2ddf7b118a
2 changed files with 2 additions and 0 deletions

View file

@ -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

View file

@ -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