debian-mirror-gitlab/db/migrate/20160412173416_add_fields_to_ci_commit.rb

10 lines
300 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-02-15 15:39:39 +05:30
class AddFieldsToCiCommit < ActiveRecord::Migration[4.2]
2016-06-02 11:05:42 +05:30
def change
add_column :ci_commits, :status, :string
add_column :ci_commits, :started_at, :timestamp
add_column :ci_commits, :finished_at, :timestamp
add_column :ci_commits, :duration, :integer
end
end