Sha256: 09beffd51929abd5cdbc52d2fac3945afcd69ada9c013b510567c2674b3fdb7d
Contents?: true
Size: 264 Bytes
Versions: 9
Compression:
Stored size: 264 Bytes
Contents
class UpdateBooleanPartType < ActiveRecord::Migration def self.up PartType.find_by_name("Boolean").update_attribute(:field_type, "radio_button") end def self.down PartType.find_by_name("Boolean").update_attribute(:field_type, "check_box") end end
Version data entries
9 entries across 9 versions & 1 rubygems