Files
discourse/db/migrate/20140711063215_add_read_faq_to_user_stats.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
162 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddReadFaqToUserStats < ActiveRecord::Migration[4.2]
2014-07-11 17:32:29 +10:00
def change
add_column :user_stats, :read_faq, :datetime
end
end