diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-06 13:30:29 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-06 13:30:29 +0200 |
commit | d56460682061b38557ef107b72358c76dee7509f (patch) | |
tree | 2709e19f4f04e0f70d29d54833f17fe4f9f85739 /db | |
parent | 5a31bbe86ca41b1461ed8bf5a663aa51c123f149 (diff) | |
download | gitlab-ce-d56460682061b38557ef107b72358c76dee7509f.tar.gz |
Improve order of columns in pipeline stages table
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170525132202_create_pipeline_stages.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20170525132202_create_pipeline_stages.rb b/db/migrate/20170525132202_create_pipeline_stages.rb index c562df27357..634f2c1156e 100644 --- a/db/migrate/20170525132202_create_pipeline_stages.rb +++ b/db/migrate/20170525132202_create_pipeline_stages.rb @@ -7,8 +7,8 @@ class CreatePipelineStages < ActiveRecord::Migration create_table :ci_stages do |t| t.integer :project_id t.integer :pipeline_id - t.string :name t.timestamps null: true + t.string :name end end end |