lowers organization.name limit to 60 in order to be coherent with username

This commit is contained in:
kikito
2015-09-09 16:33:15 +02:00
parent 4be475990c
commit 7157d056af
2 changed files with 17 additions and 12 deletions

View File

@@ -0,0 +1,5 @@
class SetOrganizationNameLimit < ActiveRecord::Migration
def change
change_column :organizations, :name, :string, limit: 60
end
end