qi6_app/db/migrate/20160407121233_add_notified_to_comments.rb
2019-05-17 12:30:45 +02:00

7 lines
197 B
Ruby

class AddNotifiedToComments < ActiveRecord::Migration[6.0]
def change
add_column :comments, :notified, :boolean, :default => false
add_column :comments, :notified_at, :datetime
end
end