Last active
January 16, 2018 00:48
-
-
Save prem-prakash/6a863b49286da08e9e00849bcca057bf to your computer and use it in GitHub Desktop.
Changed mix.exs
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
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