1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 11:19:51 +00:00
discourse/db/migrate/20130107165207_add_digest_after_days_to_users.rb

6 lines
163 B
Ruby

class AddDigestAfterDaysToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :digest_after_days, :integer, default: 7, null: false
end
end