summaryrefslogtreecommitdiff
path: root/db/migrate/20130318212250_add_snippets_to_features.rb
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