9 lines
192 B
Ruby
9 lines
192 B
Ruby
|
class ChangeProjectsDescriptionToText < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
change_column :projects, :description, :text, :null => true, :default => nil
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
end
|
||
|
end
|