Created
December 21, 2016 21:10
-
-
Save javierg/a6f1e152de688a5091653a6a3bbe5347 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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