summaryrefslogtreecommitdiff
path: root/lib/pleroma/user.ex
blob: 3fb298d0550ae6ed2e2fa6973e0fe639068338dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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