gitlab-org--gitlab-foss/db/migrate/20170329095325_add_ref_to_triggers.rb
2017-04-06 23:46:58 +09:00

13 lines
381 B
Ruby

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class AddRefToTriggers < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
def change
add_column :ci_triggers, :ref, :string
end
end