mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
10 lines
213 B
Ruby
10 lines
213 B
Ruby
class AllowLongerUsernames < ActiveRecord::Migration[4.2]
|
|
def up
|
|
change_column :users, :username, :string, limit: 60
|
|
change_column :users, :username_lower, :string, limit: 60
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|