impress/db/migrate/20130427151327_add_glitched_to_pet_states.rb

6 lines
155 B
Ruby
Raw Normal View History

class AddGlitchedToPetStates < ActiveRecord::Migration
def change
add_column :pet_states, :glitched, :boolean, null: false, default: false
end
end