Skip to content

Instantly share code, notes, and snippets.

@javierg
Created December 21, 2016 21:10
Show Gist options
  • Select an option

  • Save javierg/a6f1e152de688a5091653a6a3bbe5347 to your computer and use it in GitHub Desktop.

Select an option

Save javierg/a6f1e152de688a5091653a6a3bbe5347 to your computer and use it in GitHub Desktop.
defmodule PhoenixUeberauthComeonin.Repo.Migrations.CreateUsers do
use Ecto.Migration
def change do
create table(:users) do
add :name, :string
add :email, :string
add :password, :string
timestamps()
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment