Files
nairobi/db/migrate/20150909135032_remove_comment_title.rb
2015-09-10 19:14:05 +02:00

6 lines
119 B
Ruby

class RemoveCommentTitle < ActiveRecord::Migration
def change
remove_column :comments, :title, :string
end
end