Skip to content

Commit 7f0d272

Browse files
committed
fix some db field
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 parent ed756f3 commit 7f0d272

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/Migration/Version0019Date20200603080001.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
401401
]
402402
);
403403
$table->addColumn(
404-
'member_id', Type::STRING, [
404+
'member_id', 'string', [
405405
'notnull' => false,
406406
'length' => 15,
407407
]
@@ -471,7 +471,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
471471
]
472472
);
473473
$table->addColumn(
474-
'contact_checked', Type::SMALLINT, [
474+
'contact_checked', 'smallint', [
475475
'notnull' => false,
476476
'length' => 1,
477477
]
@@ -556,7 +556,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
556556
]
557557
);
558558
$table->addColumn(
559-
'member_id', Type::STRING, [
559+
'member_id', 'string', [
560560
'notnull' => false,
561561
'length' => 15,
562562
]
@@ -586,7 +586,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
586586
]
587587
);
588588
$table->addColumn(
589-
'accepted', Type::SMALLINT, [
589+
'accepted', 'smallint', [
590590
'notnull' => false,
591591
'length' => 1,
592592
]

0 commit comments

Comments
 (0)