mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-31 11:59:10 +01:00
13 lines
231 B
Elixir
13 lines
231 B
Elixir
defmodule Pleroma.User do
|
|
use Ecto.Schema
|
|
|
|
schema "users" do
|
|
field :bio, :string
|
|
field :email, :string
|
|
field :name, :string
|
|
field :nickname, :string
|
|
field :password_hash, :string
|
|
|
|
timestamps()
|
|
end
|
|
end
|