mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:04:03 +08:00
8 lines
194 B
Ruby
8 lines
194 B
Ruby
|
# 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
|