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: 1f400566f9f79379a25878821fd1b715a8d3cbb8 (plain)
1
2
3
4
5
6
7
8
# 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