Files
discourse/db/migrate/20150727210019_add_pinned_until_to_topics.rb
T

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

8 lines
175 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddPinnedUntilToTopics < ActiveRecord::Migration[4.2]
2015-07-29 16:34:21 +02:00
def change
add_column :topics, :pinned_until, :datetime, null: true
end
end