olwen_techno_app/db/migrate/20160407121233_add_notified_to_comments.rb
Nicolas Bally 2efaf19094 initial
2018-08-30 22:44:43 +02:00

7 lines
192 B
Ruby

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