adds moderator_id to comments

This commit is contained in:
Juanjo Bazán
2015-08-24 17:22:21 +02:00
parent 3085f265d8
commit 42348511e1

View File

@@ -0,0 +1,5 @@
class AddModeratorIdToComment < ActiveRecord::Migration
def change
add_column :comments, :moderator_id, :integer, default: nil
end
end