Skip to content

Instantly share code, notes, and snippets.

@lasseebert
Last active October 17, 2016 20:15
Show Gist options
  • Select an option

  • Save lasseebert/46e7c3957b074fd959891d44be7e1fbd to your computer and use it in GitHub Desktop.

Select an option

Save lasseebert/46e7c3957b074fd959891d44be7e1fbd to your computer and use it in GitHub Desktop.
defmodule MyApp.Repo.Migrations.AddUsersTable do
use Ecto.Migration
def change do
create table(:users) do
add :email, :string
timestamps
end
create index(:users, [:email])
end
end
@selfrootinc
Copy link
Copy Markdown

Good. :)))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment