mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
58eabb03e5
admins can set retain periods for assets
5 lines
128 B
Ruby
5 lines
128 B
Ruby
class AddRetainHoursToUploads < ActiveRecord::Migration
|
|
def change
|
|
add_column :uploads, :retain_hours, :integer
|
|
end
|
|
end
|