gitlab-org--gitlab-foss/db/migrate/20140214102325_add_api_key_...

7 lines
141 B
Ruby

# rubocop:disable all
class AddApiKeyToServices < ActiveRecord::Migration
def change
add_column :services, :api_key, :string
end
end