2020-01-17 10:08:37 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddProcessedToCiBuilds < ActiveRecord::Migration[5.2]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2020-03-30 11:07:51 -04:00
|
|
|
add_column :ci_builds, :processed, :boolean # rubocop:disable Migration/AddColumnsToWideTables
|
2020-01-17 10:08:37 -05:00
|
|
|
end
|
|
|
|
end
|