Some work

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2018-07-04 14:29:17 +02:00
parent 394057d45e
commit 93a97b0865
56 changed files with 5577 additions and 4327 deletions

View File

@@ -0,0 +1,18 @@
defmodule :"Elixir.Eventos.Repo.Migrations.Add-user-password-reset-fields" do
use Ecto.Migration
def up do
alter table(:users) do
add :reset_password_sent_at, :utc_datetime
add :reset_password_token, :string
end
create unique_index(:users, [:reset_password_token], name: "index_unique_users_reset_password_token")
end
def down do
alter table(:users) do
remove :reset_password_sent_at
remove :reset_password_token
end
end
end