Current section
Files
Jump to
Current section
Files
lib/mix/templates/ueberauth_migration_template.ex
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