debian-mirror-gitlab/db/migrate/20130206084024_add_description_to_namsespace.rb
2016-06-16 23:09:34 +05:30

7 lines
180 B
Ruby

# rubocop:disable all
class AddDescriptionToNamsespace < ActiveRecord::Migration
def change
add_column :namespaces, :description, :string, default: '', null: false
end
end