1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00
`rake db:migration` should be `rake db:migrate`
This commit is contained in:
Jake Moffatt
2016-02-12 16:24:32 -08:00
parent b88c731fa6
commit 053aec4ea4

View File

@@ -6,7 +6,7 @@ should happen when migrating *up* and what should happen when migrating
can be accomplished using the following one-liner:
```bash
$ rake db:migration && rake db:migration:redo
$ rake db:migrate && rake db:migrate:redo
```
The `rake db:migration` does what we would expect applying our new migration