6 lines
124 B
Ruby
6 lines
124 B
Ruby
|
|
class Account < ApplicationRecord
|
||
|
|
include Rodauth::Rails.model
|
||
|
|
|
||
|
|
enum :status, unverified: 1, verified: 2, closed: 3
|
||
|
|
end
|