luckybooru/src/models/user.cr

19 lines
418 B
Crystal
Raw Normal View History

class User < BaseModel
include Carbon::Emailable
include Authentic::PasswordAuthenticatable
table do
column name : String
column encrypted_password : String
column email : String
2020-03-07 23:32:07 +01:00
column created_at : Time, autogenerated: true
belongs_to primary_role : Role
has_many posts : Post, foreign_key: :creator_id
end
def emailable : Carbon::Address
Carbon::Address.new(email)
end
end