discourse/db/migrate/20121122033316_add_muted_at...

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

10 lines
308 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddMutedAtToTopicUser < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def change
add_column :topic_users, :muted_at, :datetime
change_column :topic_users, :last_read_post_number, :integer, null: true
2013-02-05 14:16:51 -05:00
change_column_default :topic_users, :last_read_post_number, nil
end
end