Skip to content

Commit

Permalink
fix some db field
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
  • Loading branch information
ArtificialOwl committed Mar 1, 2021
1 parent ed756f3 commit 7f0d272
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Migration/Version0019Date20200603080001.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
]
Expand Down Expand Up @@ -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,
]
Expand Down Expand Up @@ -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,
]
Expand Down Expand Up @@ -586,7 +586,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
]
);
$table->addColumn(
'accepted', Type::SMALLINT, [
'accepted', 'smallint', [
'notnull' => false,
'length' => 1,
]
Expand Down

0 comments on commit 7f0d272

Please sign in to comment.