summaryrefslogtreecommitdiff
path: root/db/migrate/20170217151948_add_owner_id_to_triggers.rb
blob: a28711ae59ad977b4baeaad40cd936d5b3882e2c (plain)
1
2
3
4
5
6
7
8
9
class AddOwnerIdToTriggers < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_triggers, :owner_id, :integer
  end
end