6592ada283193e95fd59b52cec88d60c2a5998bd
[anni] / priv / repo / migrations / 20170320193800_create_user.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.CreatePleroma.User do
6   use Ecto.Migration
7
8   def change do
9     create_if_not_exists table(:users) do
10       add(:email, :string)
11       add(:password_hash, :string)
12       add(:name, :string)
13       add(:nickname, :string)
14       add(:bio, :string)
15
16       timestamps()
17     end
18   end
19 end