debian-mirror-gitlab/db/migrate/20130318212250_add_snippets_to_features.rb
2014-09-02 14:37:02 +02:00

6 lines
159 B
Ruby

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