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.
educoder/db/migrate/20190517092730_add_descript...

15 lines
612 B

6 years ago
class AddDescriptionToEduSettings < ActiveRecord::Migration[5.2]
def change
5 years ago
add_column :edu_settings, :description, :string
add_index :edu_settings, :name, unique: :true
6 years ago
['tomcat_webssh', 'webssh_username', 'webssh_password', 'git_address_ip', 'git_address_domain', 'git_username',
'git_password', 'public_key', 'private_key', 'public_bucket', 'public_bucket_host', 'public_cdn_host', 'cloud_bridge',
'cloud_tomcat_php', 'host_name', 'old_edu_host'].each do |name|
if EduSetting.find_by_name(name).nil?
EduSetting.create(name: name)
end
end
end
end