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

5 lines
158 B
Ruby

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