RBOnRails-learning/app/models/user.rb

6 lines
102 B
Ruby
Raw Normal View History

2024-08-07 14:43:33 +00:00
class User < ApplicationRecord
2024-08-07 14:59:14 +00:00
has_many :articles, dependent: :destroy
2024-08-07 14:43:33 +00:00
has_secure_password
end