diff --git a/database/migrations/2015_11_05_183749_add_image_to_assets.php b/database/migrations/2015_11_05_183749_add_image_to_assets.php index 73bb41a87..598f71aa5 100644 --- a/database/migrations/2015_11_05_183749_add_image_to_assets.php +++ b/database/migrations/2015_11_05_183749_add_image_to_assets.php @@ -38,10 +38,8 @@ class AddImageToAssets extends Migration public function down() { - Schema::table('assets', function ($table) { - if (Schema::hasColumn('assets', 'image')) { - $table->dropColumn('image'); - } - }); + /** + * I'm leaving this one out, since it could destroy data that was already long-existing. + */ } }