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