Sha256: 2d49637549d9c662358ce608c965f8cce94a8f5ea0f22b6853730c36f2ccfcbb
Contents?: true
Size: 350 Bytes
Versions: 43
Compression:
Stored size: 350 Bytes
Contents
class RemoveDefaultFromSpotlightExhibit < ActiveRecord::Migration def up return unless Spotlight::Exhibit.column_names.include? 'default' remove_column :spotlight_exhibits, :default end def down add_column :spotlight_exhibits, :default, :boolean, default: true add_index :spotlight_exhibits, :default, unique: true end end
Version data entries
43 entries across 43 versions & 1 rubygems