debian-mirror-gitlab/db/migrate/20160302151724_add_import_credentials_to_project_import_data.rb
2019-02-15 15:39:39 +05:30

8 lines
313 B
Ruby

class AddImportCredentialsToProjectImportData < ActiveRecord::Migration[4.2]
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