Skip to content

Commit

Permalink
v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinkeshwar Singh committed Jul 9, 2021
1 parent cf998e7 commit e90bd8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tinkeshwar/imager",
"description": "This is a laravel package to create thumbs of any desired size on the fly from an existing image.",
"license": "MIT",
"version": "2.2.2",
"version": "2.2.3",
"keywords": ["image", "gd", "laravel", "laravel-image", "image-thumb"],
"authors": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ public function up()
*/
public function down()
{
$table->dropColumn(['image_category','sort_order']);
Schema::table('images', function (Blueprint $table) {
$table->dropColumn(['image_category','sort_order']);
});
}
}

0 comments on commit e90bd8a

Please sign in to comment.