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

20130323174317_add_private_to_snippets.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92f3a5c70118f7b4506aa0ac5d0fc63b3955bf78 (plain)
1
2
3
4
5
class AddPrivateToSnippets < ActiveRecord::Migration
  def change
    add_column :snippets, :private, :boolean, null: false, default: true
  end
end