debian-mirror-gitlab/db/migrate/20160302151724_add_import_credentials_to_project_import_data.rb
2016-06-02 11:05:42 +05:30

8 lines
308 B
Ruby

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