See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # Remember to add `ecto` to your list of deps in `mix.exs` | |
| import Ecto.Query | |
| # Replace `MyApp` with the name of the your app | |
| alias MyApp.Repo | |
| # Replace with your own raw sql query | |
| query = """ | |
| SELECT * FROM table; | |
| """ |