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: 376f4618d414aa61104a1c84762b47a7802c855b (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPrivateToSnippets < ActiveRecord::Migration
  def change
    add_column :snippets, :private, :boolean, null: false, default: true
  end
end