From 7b23e4625068877e72ae874f572273974dc63675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Klabbers?= Date: Wed, 27 Jun 2018 21:09:32 +0200 Subject: [PATCH] not dropping bio due to not having a replacement --- .../migrations/2018_01_30_222900_change_users_b8_columns.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/framework/core/migrations/2018_01_30_222900_change_users_b8_columns.php b/framework/core/migrations/2018_01_30_222900_change_users_b8_columns.php index c00dbb449..e7bb77c9e 100644 --- a/framework/core/migrations/2018_01_30_222900_change_users_b8_columns.php +++ b/framework/core/migrations/2018_01_30_222900_change_users_b8_columns.php @@ -23,7 +23,6 @@ return [ $table->renameColumn('read_time', 'marked_all_as_read_at'); $table->renameColumn('notifications_read_time', 'read_notifications_at'); $table->renameColumn('avatar_path', 'avatar_url'); - $table->dropColumn('bio'); }); }, @@ -37,7 +36,6 @@ return [ $table->renameColumn('marked_all_as_read_at', 'read_time'); $table->renameColumn('read_notifications_at', 'notifications_read_time'); $table->renameColumn('avatar_url', 'avatar_path'); - $table->text('bio')->nullable(); }); } ];