Fix custom fields to allow values longer than 255 characters
[MAILPOET-1381]
This commit is contained in:
@@ -200,7 +200,7 @@ class Migrator {
|
|||||||
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
||||||
'subscriber_id int(11) unsigned NOT NULL,',
|
'subscriber_id int(11) unsigned NOT NULL,',
|
||||||
'custom_field_id int(11) unsigned NOT NULL,',
|
'custom_field_id int(11) unsigned NOT NULL,',
|
||||||
'value varchar(255) NOT NULL DEFAULT "",',
|
'value text NOT NULL,',
|
||||||
'created_at TIMESTAMP NULL,',
|
'created_at TIMESTAMP NULL,',
|
||||||
'updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
'updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
||||||
'PRIMARY KEY (id),',
|
'PRIMARY KEY (id),',
|
||||||
|
Reference in New Issue
Block a user