klaay-chatbot/app/models/user.rb

10 lines
190 B
Ruby

# frozen_string_literal: true
class User < ApplicationRecord
has_secure_password
validates :email, presence: true, uniqueness: true
has_many :conversations, dependent: :destroy
end