Fix migration

pull/410/head
Daniel Supernault 7 years ago
parent 37fc5c1620
commit 1c619701b3
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -28,9 +28,11 @@ class UpdateSettingsTable extends Migration
*/
public function down()
{
$table->dropColumn('show_profile_followers');
$table->dropColumn('show_profile_follower_count');
$table->dropColumn('show_profile_following');
$table->dropColumn('show_profile_following_count');
Schema::table('user_settings', function (Blueprint $table) {
$table->dropColumn('show_profile_followers');
$table->dropColumn('show_profile_follower_count');
$table->dropColumn('show_profile_following');
$table->dropColumn('show_profile_following_count');
});
}
}

Loading…
Cancel
Save