8 lines
152 B
Ruby
8 lines
152 B
Ruby
|
class AddProtectedToCiPipelines < ActiveRecord::Migration
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def change
|
||
|
add_column :ci_pipelines, :protected, :boolean
|
||
|
end
|
||
|
end
|