Move snippets to own tab as feature. Make it disabled for new projects by default

This commit is contained in:
Dmitriy Zaporozhets 2013-03-18 23:33:41 +02:00
parent 112dc875ba
commit b765a7958d
7 changed files with 25 additions and 3 deletions

View file

@ -0,0 +1,5 @@
class AddSnippetsToFeatures < ActiveRecord::Migration
def change
add_column :projects, :snippets_enabled, :boolean, null: false, default: true
end
end