5 lines
146 B
Ruby
5 lines
146 B
Ruby
|
class GreetingCardSafeEmail
|
||
|
include Mongoid::Document
|
||
|
field :email, type: String
|
||
|
index({email: 1}, { unique: false, background: true })
|
||
|
end
|