aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/user.ex13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex
new file mode 100644
index 000000000..3fb298d05
--- /dev/null
+++ b/lib/pleroma/user.ex
@@ -0,0 +1,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