2019-12-18 09:49:57 -06:00
|
|
|
# typed: false
|
2019-05-13 18:42:57 +02:00
|
|
|
class AddProjectDescription < ActiveRecord::Migration[5.2]
|
2007-03-30 04:36:52 +00:00
|
|
|
def self.up
|
|
|
|
|
add_column :projects, :description, :text
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
|
remove_column :projects, :description
|
|
|
|
|
end
|
|
|
|
|
end
|