mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
9 lines
205 B
Ruby
9 lines
205 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
|