forked from OpenNeo/impress
6 lines
155 B
Ruby
6 lines
155 B
Ruby
|
class AddGlitchedToPetStates < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :pet_states, :glitched, :boolean, null: false, default: false
|
||
|
end
|
||
|
end
|