2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2016-06-02 11:05:42 +05:30
|
|
|
class AddFieldsToCiCommit < ActiveRecord::Migration
|
|
|
|
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
|