1
0
Fork 0
mirror of https://framagit.org/framasoft/mobilizon.git synced 2025-02-22 17:20:39 +00:00
mobilizon/priv/repo/migrations/20171207162546_create_users.exs
Thomas Citharel 92d2045735 end
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-01-09 17:52:26 +01:00

16 lines
415 B
Elixir

defmodule Eventos.Repo.Migrations.CreateUsers do
use Ecto.Migration
def change do
create table(:users) do
add :email, :string, null: false
add :role, :integer, default: 0, null: false
add :password_hash, :string, null: false
add :account_id, references(:accounts, on_delete: :delete_all), null: false
timestamps()
end
create unique_index(:users, [:email])
end
end