Skip to content

Commit cd6fc56

Browse files
committed
fixing alt_name
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 parent b3083d9 commit cd6fc56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/Migration/Version0019Date20200603080001.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
9696
);
9797
$table->addColumn(
9898
'alt_name', 'string', [
99-
'notnull' => true,
99+
'notnull' => false,
100100
'length' => 127,
101101
'default' => ''
102102
]

lib/Migration/Version0019Date20200726125713.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
7676
if (!$table->hasColumn('alt_name')) {
7777
$table->addColumn(
7878
'alt_name', 'string', [
79-
'notnull' => true,
79+
'notnull' => false,
8080
'length' => 127,
8181
'default' => ''
8282
]

0 commit comments

Comments
 (0)