20130318212250_add_snippets_to_features.rb 181 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6
class AddSnippetsToFeatures < ActiveRecord::Migration
  def change
    add_column :projects, :snippets_enabled, :boolean, null: false, default: true
  end
end