impress/db/migrate/20130128065543_remove_translated_fields_from_items.rb
Matchu b2a027fbbf Oops, should've used migration version 4.2
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!
2023-10-23 19:05:08 -07:00

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