Skip to content

Instantly share code, notes, and snippets.

@prem-prakash
Last active January 16, 2018 00:48
Show Gist options
  • Save prem-prakash/6a863b49286da08e9e00849bcca057bf to your computer and use it in GitHub Desktop.
Save prem-prakash/6a863b49286da08e9e00849bcca057bf to your computer and use it in GitHub Desktop.
Changed mix.exs
defp aliases do
[
"ecto.migrate": ["ecto.migrate", "ecto.dump"],
"ecto.setup": ["ecto.create", "ecto.load", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.load", "ecto.migrate", "test"]
]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment