6 lines
143 B
Ruby
6 lines
143 B
Ruby
class AddCounterToNotifications < ActiveRecord::Migration
|
|
def change
|
|
add_column :notifications, :counter, :integer, default: 1
|
|
end
|
|
end
|