gitlab-org--gitlab-foss/db/migrate/20160415133440_add_shared_r...

7 lines
185 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-04-15 13:51:41 +00:00
class AddSharedRunnersTextToApplicationSettings < ActiveRecord::Migration
def change
add_column :application_settings, :shared_runners_text, :text
end
end