mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-12 17:44:31 +00:00
Fix migration
This commit is contained in:
parent
37fc5c1620
commit
1c619701b3
1 changed files with 6 additions and 4 deletions
|
@ -28,9 +28,11 @@ class UpdateSettingsTable extends Migration
|
||||||
*/
|
*/
|
||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
$table->dropColumn('show_profile_followers');
|
Schema::table('user_settings', function (Blueprint $table) {
|
||||||
$table->dropColumn('show_profile_follower_count');
|
$table->dropColumn('show_profile_followers');
|
||||||
$table->dropColumn('show_profile_following');
|
$table->dropColumn('show_profile_follower_count');
|
||||||
$table->dropColumn('show_profile_following_count');
|
$table->dropColumn('show_profile_following');
|
||||||
|
$table->dropColumn('show_profile_following_count');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue