summaryrefslogtreecommitdiff
path: root/db/migrate/20130206084024_add_description_to_namsespace.rb
blob: ef02e489d03088e33a910f487d8a6677f90575c8 (plain)
1
2
3
4
5
class AddDescriptionToNamsespace < ActiveRecord::Migration
  def change
    add_column :namespaces, :description, :string, default: '', null: false
  end
end