defmodule UeberauthMigrationTemplate do use Ecto.Migration def change do create table(:ueberauths) do add :provider, :string add :uid, :string add :expires_at, :utc_datetime add :hashed_password, :text add :hashed_password_reset_token, :text add :user_id, :integer timestamps end create index(:ueberauths, [:user_id]) end end