Skip to content
This repository was archived by the owner on Jul 19, 2021. It is now read-only.

Binda v0.0.6 release

Choose a tag to compare

@a-barbieri a-barbieri released this 12 Sep 21:14
· 689 commits to master since this release

In order to update from the previous release you need to update the application schema with the following migration.

class AddColumnsToBindaFieldSettings < ActiveRecord::Migration[5.1]
  def change
    add_column        :binda_field_settings,   :allow_null, :boolean
    add_reference     :binda_field_settings,   :default_choice, index: true

    create_table :binda_choices do |t|
      t.string           :label
      t.string           :value
      t.belongs_to       :field_setting
      t.references       :selectable, polymorphic: true, index: true
      t.timestamps
    end

    create_table :binda_selects do |t|
      t.belongs_to       :field_setting
      t.references       :fieldable, polymorphic: true, index: true
      t.string           :type
      t.timestamps
    end
  end
end