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

20130206084024_add_description_to_namsespace.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62676ce8914ac04a06602e9c9279b1f2a220de4c (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddDescriptionToNamsespace < ActiveRecord::Migration
  def change
    add_column :namespaces, :description, :string, default: '', null: false
  end
end