forked from OpenNeo/impress
10 lines
189 B
Ruby
10 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
|