From 4edde1636faa7a1bf170daab441b23f95c501f8e Mon Sep 17 00:00:00 2001 From: Amine Ben hammou Date: Tue, 3 Sep 2019 10:57:33 +0100 Subject: [PATCH] Add link_token to subscribers table --- lib/Config/Migrator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Config/Migrator.php b/lib/Config/Migrator.php index 14bbbeb568..9c0de7e19a 100644 --- a/lib/Config/Migrator.php +++ b/lib/Config/Migrator.php @@ -208,6 +208,7 @@ class Migrator { "source enum('form','imported','administrator','api','wordpress_user','woocommerce_user','woocommerce_checkout','unknown') DEFAULT 'unknown',", 'count_confirmations int(11) unsigned NOT NULL DEFAULT 0,', 'unsubscribe_token char(15) NULL,', + 'link_token varchar(32) NULL,', 'PRIMARY KEY (id),', 'UNIQUE KEY email (email),', 'UNIQUE KEY unsubscribe_token (unsubscribe_token),',