impress/db/migrate/20101125154435_allow_null_for_some_objects_fields.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

17 lines
879 B
Ruby

class AllowNullForSomeObjectsFields < ActiveRecord::Migration[4.2]
def self.up
change_column :objects, :category, :string, :limit => 50, :null => true
change_column :objects, :type, :string, :limit => 50, :null => true
change_column :objects, :rarity, :string, :limit => 25, :null => true
change_column :objects, :rarity_index, :integer, :limit => 2, :null => true
change_column :objects, :weight_lbs, :integer, :limit => 2, :null => true
end
def self.down
change_column :objects, :category, :string, :limit => 50, :null => false
change_column :objects, :type, :string, :limit => 50, :null => false
change_column :objects, :rarity, :string, :limit => 25, :null => false
change_column :objects, :rarity_index, :integer, :limit => 2, :null => false
change_column :objects, :weight_lbs, :integer, :limit => 2, :null => false
end
end