forked from mirror/pixelfed
Fix database migration down method
This commit is contained in:
parent
78a5f0d52e
commit
b79fdea270
1 changed files with 5 additions and 3 deletions
|
@ -27,8 +27,10 @@ class UpdateProfilesTable extends Migration
|
||||||
*/
|
*/
|
||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
|
Schema::table('profiles', function (Blueprint $table) {
|
||||||
$table->dropColumn('unlisted');
|
$table->dropColumn('unlisted');
|
||||||
$table->dropColumn('cw');
|
$table->dropColumn('cw');
|
||||||
$table->dropColumn('no_autolink');
|
$table->dropColumn('no_autolink');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue