mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
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()
|
||||||
{
|
{
|
||||||
$table->dropColumn('unlisted');
|
Schema::table('profiles', function (Blueprint $table) {
|
||||||
$table->dropColumn('cw');
|
$table->dropColumn('unlisted');
|
||||||
$table->dropColumn('no_autolink');
|
$table->dropColumn('cw');
|
||||||
|
$table->dropColumn('no_autolink');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue