Sha256: 2adc14f288caceff8e5a96a003a18422630b4e2caf230c24883d3469f0d943ec
Contents?: true
Size: 498 Bytes
Versions: 53
Compression:
Stored size: 498 Bytes
Contents
class AddEncryptionOnOauthKeys < ActiveRecord::Migration def change rename_column :organizations, :oauth_token, :encrypted_oauth_token add_column :organizations, :encrypted_oauth_token_iv, :string add_column :organizations, :encrypted_oauth_token_salt, :string rename_column :organizations, :refresh_token, :encrypted_refresh_token add_column :organizations, :encrypted_refresh_token_iv, :string add_column :organizations, :encrypted_refresh_token_salt, :string end end
Version data entries
53 entries across 53 versions & 1 rubygems