pull/410/head
Daniel Supernault 2018-08-26 18:50:20 -06:00
rodzic 37fc5c1620
commit 1c619701b3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -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');
});
}
}