Skip to content

Commit e5b9912

Browse files
committed
fix: 🐛 Reverted changes to uid length
1 parent 6d3fa07 commit e5b9912

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/Migration/Version2060Date20200302131958.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
6060
]);
6161
$table->addColumn('owner_uid', 'string', [
6262
'notnull' => false,
63-
'length' => 255,
63+
'length' => 64,
6464
]);
6565
$table->addColumn('editor_uid', 'string', [
6666
'notnull' => false,
67-
'length' => 255,
67+
'length' => 64,
6868
]);
6969
$table->addColumn('guest_displayname', 'string', [
7070
'notnull' => false,
@@ -151,7 +151,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
151151
]);
152152
$table->addColumn('uid', 'string', [
153153
'notnull' => false,
154-
'length' => 255,
154+
'length' => 64,
155155
]);
156156
$table->addColumn('fileid', 'bigint', [
157157
'notnull' => true,
@@ -187,7 +187,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
187187
]);
188188
$table->addColumn('uid', 'string', [
189189
'notnull' => false,
190-
'length' => 255,
190+
'length' => 64,
191191
]);
192192
$table->addColumn('fileid', 'bigint', [
193193
'notnull' => true,

0 commit comments

Comments
 (0)