creddit/db/migrate/20150804145405_add_deleted_at_to_comments.rb

6 lines
127 B
Ruby
Raw Normal View History

2015-07-16 11:57:27 -04:00
class AddDeletedAtToComments < ActiveRecord::Migration
def change
add_column :comments, :deleted_at, :datetime
end
end