1
0
Fork 0
forked from OpenNeo/impress
impress/db/migrate/20130427151327_add_glitched_to_pet_states.rb

6 lines
160 B
Ruby
Raw Normal View History

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