Files
grecia/db/migrate/20160108114750_add_counter_to_notifications.rb
2016-01-08 14:32:16 +01:00

6 lines
143 B
Ruby

class AddCounterToNotifications < ActiveRecord::Migration
def change
add_column :notifications, :counter, :integer, default: 1
end
end