greeting_card/app/models/greeting_card_safe_email.rb

5 lines
146 B
Ruby
Raw Normal View History

2024-12-02 00:35:08 +00:00
class GreetingCardSafeEmail
include Mongoid::Document
field :email, type: String
index({email: 1}, { unique: false, background: true })
end