summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorTomasz Maczukin <tomasz@maczukin.pl>2018-03-06 16:25:13 +0100
committerTomasz Maczukin <tomasz@maczukin.pl>2018-03-28 13:58:16 +0200
commitd58d3098f159a17fbcf1ae27165c249722990988 (patch)
treecb1a8732227282cbfe85ded3e1d7dcc5ab5308ce /db/migrate
parentf5e602ee0f8d95617adf6fb9b5a1a132a471fb12 (diff)
downloadgitlab-ce-d58d3098f159a17fbcf1ae27165c249722990988.tar.gz
Rename used_timeout to timeout
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20180301010859_create_ci_builds_metadata_table.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20180301010859_create_ci_builds_metadata_table.rb b/db/migrate/20180301010859_create_ci_builds_metadata_table.rb
index cd7824d7788..72c204026d8 100644
--- a/db/migrate/20180301010859_create_ci_builds_metadata_table.rb
+++ b/db/migrate/20180301010859_create_ci_builds_metadata_table.rb
@@ -6,7 +6,7 @@ class CreateCiBuildsMetadataTable < ActiveRecord::Migration
def change
create_table :ci_builds_metadata, id: false do |t|
t.integer :build_id, null: false
- t.integer :used_timeout
+ t.integer :timeout
t.integer :timeout_source, null: false, default: 1
t.primary_key :build_id