1
0
Fork 0

More ugly fixes

This commit is contained in:
Andrew Tomaka 2015-10-20 18:06:44 -04:00
parent 1e7d000f72
commit 64d5d157b3
2 changed files with 1 additions and 6 deletions

View file

@ -5,7 +5,7 @@ class CreateStats < ActiveRecord::Migration
t.integer :max t.integer :max
t.integer :awaken_min t.integer :awaken_min
t.integer :awaken_make t.integer :awaken_make
t.references :state_type, index: true, foreign_key: true t.references :stat_type, index: true, foreign_key: true
t.timestamps null: false t.timestamps null: false
end end

View file

@ -1,5 +0,0 @@
class FixStateToStat < ActiveRecord::Migration
def change
rename_column :stats, :state_type_id, :stat_type_id
end
end