From 7f0d2726c23148fe97f87fbf3121221cb01a2dd1 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Mon, 1 Mar 2021 11:37:39 -0100 Subject: [PATCH] fix some db field Signed-off-by: Maxence Lange --- lib/Migration/Version0019Date20200603080001.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Migration/Version0019Date20200603080001.php b/lib/Migration/Version0019Date20200603080001.php index 357ebb5c2..bb30b3e2c 100644 --- a/lib/Migration/Version0019Date20200603080001.php +++ b/lib/Migration/Version0019Date20200603080001.php @@ -401,7 +401,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt ] ); $table->addColumn( - 'member_id', Type::STRING, [ + 'member_id', 'string', [ 'notnull' => false, 'length' => 15, ] @@ -471,7 +471,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt ] ); $table->addColumn( - 'contact_checked', Type::SMALLINT, [ + 'contact_checked', 'smallint', [ 'notnull' => false, 'length' => 1, ] @@ -556,7 +556,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt ] ); $table->addColumn( - 'member_id', Type::STRING, [ + 'member_id', 'string', [ 'notnull' => false, 'length' => 15, ] @@ -586,7 +586,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt ] ); $table->addColumn( - 'accepted', Type::SMALLINT, [ + 'accepted', 'smallint', [ 'notnull' => false, 'length' => 1, ]