discourse/app/models/backup_metadata.rb
Gerhard Schlager a65a9a85d5 FEATURE: Remap uploads during restore when S3 or CDN changes
In order for this to work the Backuper stores a couple of site settings
in the new backup_metadata table, because the old setting values might
not be available on restore anymore.
2019-07-09 14:04:16 +02:00

17 lines
315 B
Ruby

# frozen_string_literal: true
class BackupMetadata < ActiveRecord::Base
def self.value_for(name)
where(name: name).pluck(:value).first
end
end
# == Schema Information
#
# Table name: backup_metadata
#
# id :bigint not null, primary key
# name :string not null
# value :string
#