Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160302151724_add_import_credentials_to_project_import_data.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffcd64266e3801b4676c67eab19ca98e3bf4cf05 (plain)
1
2
3
4
5
6
7
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