Class: AddHostPurpose

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/016_add_host_purpose.rb

Class Method Summary collapse

Class Method Details

.downObject



6
7
8
# File 'db/migrate/016_add_host_purpose.rb', line 6

def self.down
	remove_column :hosts, :purpose
end

.upObject



2
3
4
# File 'db/migrate/016_add_host_purpose.rb', line 2

def self.up
	add_column :hosts, :purpose, :text
end