Skip to content

Commit

Permalink
fixing alt_name
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 Oct 6, 2020
1 parent 1d8bbba commit 16f62da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Migration/Version0019Date20200603080001.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
);
$table->addColumn(
'alt_name', 'string', [
'notnull' => true,
'notnull' => false,
'length' => 127,
'default' => ''
]
Expand Down
2 changes: 1 addition & 1 deletion lib/Migration/Version0019Date20200726125713.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
if (!$table->hasColumn('alt_name')) {
$table->addColumn(
'alt_name', 'string', [
'notnull' => true,
'notnull' => false,
'length' => 127,
'default' => ''
]
Expand Down

0 comments on commit 16f62da

Please sign in to comment.