10 lines
181 B
Ruby
10 lines
181 B
Ruby
|
class AddRefToTriggers < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def change
|
||
|
add_column :ci_triggers, :ref, :string
|
||
|
end
|
||
|
end
|