mirror of
https://github.com/discourse/discourse.git
synced 2025-01-24 11:15:31 +08:00
9 lines
199 B
Ruby
9 lines
199 B
Ruby
class EnlargeUsersEmailField < ActiveRecord::Migration
|
|
def up
|
|
change_column :users, :email, :string, limit: 513
|
|
end
|
|
def down
|
|
change_column :users, :email, :string, limit: 128
|
|
end
|
|
end
|