Files
discourse/db/migrate/20130428194335_add_unstarred_at_to_topic_users.rb
T

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

8 lines
172 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddUnstarredAtToTopicUsers < ActiveRecord::Migration[4.2]
def change
add_column :topic_users, :unstarred_at, :datetime
end
end