mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 19:00:44 +08:00
8 lines
178 B
Ruby
8 lines
178 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
class AddDurationToTopicTimers < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :topic_timers, :duration, :integer, null: true
|
||
|
end
|
||
|
end
|