Fix down migration

Refs #18.
This commit is contained in:
Franz Liedke 2020-02-07 11:55:52 +01:00
parent 95d2ba3eb7
commit 4ec12da827

View File

@ -19,7 +19,7 @@ return [
'down' => function (Builder $schema) {
$schema->table('flags', function (Blueprint $table) {
$table->string(['reason_detail'])->change();
$table->string('reason_detail')->change();
});
}
];