From f7484336a2dd6e8ac3ee14b1dd5d28e8c0ad9de9 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 26 Mar 2018 12:48:53 +0200 Subject: [PATCH] v0.1.8 --- Gemfile.lock | 2 +- db/migrate/1_create_binda_tables.rb | 1 + db/migrate/20180323112252_add_svg_to_asset.rb | 5 ----- lib/binda/version.rb | 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) delete mode 100644 db/migrate/20180323112252_add_svg_to_asset.rb diff --git a/Gemfile.lock b/Gemfile.lock index a183bd0d..637025f6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - binda (0.1.7) + binda (0.1.8) aasm (>= 4.11, < 4.13) ancestry (>= 2.1, < 3.1) bourbon (= 4.3.4) diff --git a/db/migrate/1_create_binda_tables.rb b/db/migrate/1_create_binda_tables.rb index 6b1eb467..0406c0d8 100644 --- a/db/migrate/1_create_binda_tables.rb +++ b/db/migrate/1_create_binda_tables.rb @@ -91,6 +91,7 @@ def change t.string :video t.string :image t.string :audio + t.string :svg t.belongs_to :field_setting t.references :fieldable, polymorphic: true, index: true t.string :content_type diff --git a/db/migrate/20180323112252_add_svg_to_asset.rb b/db/migrate/20180323112252_add_svg_to_asset.rb deleted file mode 100644 index dd7b3795..00000000 --- a/db/migrate/20180323112252_add_svg_to_asset.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddSvgToAsset < ActiveRecord::Migration[5.1] - def change - add_column :binda_assets, :svg, :string - end -end diff --git a/lib/binda/version.rb b/lib/binda/version.rb index 0779af1a..146bce4e 100644 --- a/lib/binda/version.rb +++ b/lib/binda/version.rb @@ -1,3 +1,3 @@ module Binda - VERSION = '0.1.7'.freeze + VERSION = '0.1.8'.freeze end \ No newline at end of file