Files
discourse/db/migrate/20201005165544_add_topic_slow_mode_interval.rb
T

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

8 lines
194 B
Ruby
Raw Normal View History

2020-10-16 16:24:38 -03:00
# frozen_string_literal: true
class AddTopicSlowModeInterval < ActiveRecord::Migration[6.0]
def change
add_column :topics, :slow_mode_seconds, :integer, null: false, default: 0
end
end