diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-07-31 12:23:04 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-07-31 12:23:04 +0200 |
commit | 13a15e7009e292919109ea911640a627dbd0e327 (patch) | |
tree | 9fbb761ee28a2bd9c6907d99ecc0809da8a4bf9a /app | |
parent | cec2cc3ffa3077346c81625f6b1f48c113e19e93 (diff) | |
download | gitlab-ce-13a15e7009e292919109ea911640a627dbd0e327.tar.gz |
Use update_column_in_batches helper in stages migration
Diffstat (limited to 'app')
-rw-r--r-- | app/models/ci/stage.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/models/ci/stage.rb b/app/models/ci/stage.rb index cd2f1dd3509..7819bc3cd2c 100644 --- a/app/models/ci/stage.rb +++ b/app/models/ci/stage.rb @@ -17,8 +17,6 @@ module Ci validates :pipeline, presence: true, unless: :importing? validates :name, presence: true, unless: :importing? - ## TODO, should we extract these events to `Ci::Eventable`? - # state_machine :status, initial: :created do event :enqueue do transition created: :pending |