Matchu
b2a027fbbf
Oh I didn't realize the lowest version Rails had for this is 4.2. I wish running `rake db:migrate` checked this, but I'm running into it on another branch when I try to create a *new* migration which for some reason leads it to inspect the old migrations and notice the issue. Weird!
13 lines
398 B
Ruby
13 lines
398 B
Ruby
class RemoveTranslatedFieldsFromItems < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
remove_column :items, :name
|
|
remove_column :items, :description
|
|
remove_column :items, :rarity
|
|
end
|
|
|
|
def self.down
|
|
add_column :items, :name, :limit => 100, :null => false
|
|
add_column :items, :description, :limit => 16777215, :null => false
|
|
add_columm :items, :rarity, :limit => 25
|
|
end
|
|
end
|