socialforge/db/migrate/20160506104128_change_cours...

9 lines
148 B
Ruby
Raw Permalink Normal View History

class ChangeCourseMessagesCloumn < ActiveRecord::Migration
def up
change_column :course_messages, :content, :text
end
def down
end
end