pleroma/lib/pleroma/user.ex

14 lines
231 B
Elixir
Raw Normal View History

2017-03-20 21:28:31 +01:00
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