Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130318212250_add_snippets_to_features.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9860b85f504843128b2f95cba285920291f9886c (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddSnippetsToFeatures < ActiveRecord::Migration
  def change
    add_column :projects, :snippets_enabled, :boolean, null: false, default: true
  end
end