diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-07-03 15:51:23 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-07-03 15:51:23 +0200 |
commit | c209575b049af34ebefacfceb22337da6f32149d (patch) | |
tree | 350a60a43b63897dcdee0682af0eb0c9637cce37 | |
parent | aad4f676fea567d10349240207d548360607fa1d (diff) | |
download | gitlab-ci-encrypt-variables.tar.gz |
Fix annotationsencrypt-variables
-rw-r--r-- | app/models/variable.rb | 2 | ||||
-rw-r--r-- | spec/models/variable_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/models/variable.rb b/app/models/variable.rb index 76a2c65..676fed1 100644 --- a/app/models/variable.rb +++ b/app/models/variable.rb @@ -6,7 +6,7 @@ # project_id :integer not null # key :string(255) # value :text -# encrypted_value :string(255) +# encrypted_value :text # encrypted_value_salt :string(255) # encrypted_value_iv :string(255) # diff --git a/spec/models/variable_spec.rb b/spec/models/variable_spec.rb index fd1ce1e..4575115 100644 --- a/spec/models/variable_spec.rb +++ b/spec/models/variable_spec.rb @@ -6,7 +6,7 @@ # project_id :integer not null # key :string(255) # value :text -# encrypted_value :string(255) +# encrypted_value :text # encrypted_value_salt :string(255) # encrypted_value_iv :string(255) # |