mobilizon.chapril.org-mobil.../priv/repo/migrations/20180109170315_create_users.exs
Thomas Citharel 20cd1bb579 Change models, new migrations, fix front and make tests work
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-01-13 23:33:03 +01:00

17 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