9 lines
189 B
Ruby
9 lines
189 B
Ruby
class AddDescriptionToObjects < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :objects, :description, :text
|
|
end
|
|
|
|
def self.down
|
|
remove_column :objects, :description
|
|
end
|
|
end
|