mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 11:20:57 -06:00
9 lines
218 B
Ruby
9 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddAutoCloseAtToTopics < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :topics, :auto_close_at, :datetime
|
|
add_column :topics, :auto_close_user_id, :integer
|
|
end
|
|
end
|