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

20150703125244_add_encrypted_value_to_variables.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0adf31aeb9041bfbfb754643510e8ec3ef9a90e3 (plain)
1
2
3
4
5
6
7
class AddEncryptedValueToVariables < ActiveRecord::Migration
  def change
    add_column :variables, :encrypted_value, :text
    add_column :variables, :encrypted_value_salt, :string
    add_column :variables, :encrypted_value_iv, :string
  end
end