Class: AddLootsFields

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/014_add_loots_fields.rb

Class Method Summary collapse

Class Method Details

.downObject



7
8
9
10
# File 'db/migrate/014_add_loots_fields.rb', line 7

def self.down
  remove_column :loots, :name
  remove_column :loots, :info
end

.upObject



2
3
4
5
# File 'db/migrate/014_add_loots_fields.rb', line 2

def self.up
  add_column :loots, :name, :text
  add_column :loots, :info, :text
end