debian-mirror-gitlab/db/migrate/20130318212250_add_snippets_to_features.rb
2016-06-16 23:09:34 +05:30

7 lines
181 B
Ruby

# rubocop:disable all
class AddSnippetsToFeatures < ActiveRecord::Migration
def change
add_column :projects, :snippets_enabled, :boolean, null: false, default: true
end
end