summaryrefslogtreecommitdiff
path: root/db/migrate/20160331153918_add_fields_to_ci_commit.rb
blob: 03eb9ba4e5313a8584921282b9206e4f36d22775 (plain)
1
2
3
4
5
6
7
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
  end
end