You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
243 B
9 lines
243 B
5 years ago
|
class InitTrustieConfig < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
hash = {"trustie_api_token" => "", "trustie_api_url" => ""}
|
||
|
hash.each { |key, value|
|
||
|
EduSetting.find_or_create_by(name: key, value: value)
|
||
|
}
|
||
|
end
|
||
|
end
|