2018-10-11 17:37:39 +02:00
|
|
|
defmodule :"Elixir.Mobilizon.Repo.Migrations.Add-user-confirm-email-fields" do
|
2018-07-04 14:29:17 +02:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def up do
|
|
|
|
alter table(:users) do
|
2019-02-22 14:18:52 +01:00
|
|
|
add(:confirmed_at, :utc_datetime)
|
|
|
|
add(:confirmation_sent_at, :utc_datetime)
|
|
|
|
add(:confirmation_token, :string)
|
2018-07-04 14:29:17 +02:00
|
|
|
end
|
2019-02-22 14:18:52 +01:00
|
|
|
|
|
|
|
create(
|
|
|
|
unique_index(:users, [:confirmation_token], name: "index_unique_users_confirmation_token")
|
|
|
|
)
|
2018-07-04 14:29:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
|
|
|
alter table(:users) do
|
2019-02-22 14:18:52 +01:00
|
|
|
remove(:confirmed_at)
|
|
|
|
remove(:confirmation_sent_at)
|
|
|
|
remove(:confirmation_token)
|
2018-07-04 14:29:17 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|