class AddCommentEmail
Public Instance Methods
down()
click to toggle source
# File lib/thoth/migrate/004_add_comment_email.rb, line 30 def down drop_column(:comments, :author_email) end
up()
click to toggle source
# File lib/thoth/migrate/004_add_comment_email.rb, line 34 def up add_column(:comments, :author_email, :varchar) end