debian-mirror-gitlab/db/migrate/20160302151724_add_import_credentials_to_project_import_data.rb
2016-06-16 23:09:34 +05:30

9 lines
330 B
Ruby

# rubocop:disable all
class AddImportCredentialsToProjectImportData < ActiveRecord::Migration
def change
add_column :project_import_data, :encrypted_credentials, :text
add_column :project_import_data, :encrypted_credentials_iv, :string
add_column :project_import_data, :encrypted_credentials_salt, :string
end
end