mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
12 lines
236 B
Ruby
12 lines
236 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EnlargeUsersEmailField < ActiveRecord::Migration[4.2]
|
|
def up
|
|
change_column :users, :email, :string, limit: 513
|
|
end
|
|
|
|
def down
|
|
change_column :users, :email, :string, limit: 128
|
|
end
|
|
end
|