2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddProcessedToCiBuilds < ActiveRecord::Migration[5.2]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2020-04-22 19:07:51 +05:30
|
|
|
add_column :ci_builds, :processed, :boolean # rubocop:disable Migration/AddColumnsToWideTables
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|