class AddCommentSummary
Public Instance Methods
down()
click to toggle source
# File lib/thoth/migrate/007_add_comment_summary.rb, line 30 def down drop_column(:comments, :summary) end
up()
click to toggle source
# File lib/thoth/migrate/007_add_comment_summary.rb, line 34 def up add_column(:comments, :summary, :varchar, :default => '', :null => false) end