Update README.md

This commit is contained in:
Matthias Kadenbach 2017-04-25 11:13:59 -07:00 committed by GitHub
parent 2e54bda0e1
commit 256e8f045b
1 changed files with 7 additions and 0 deletions

View File

@ -15,3 +15,10 @@
| `x-tls-key` | | Key file location. |
| `x-tls-insecure-skip-verify` | | Whether or not to use SSL (true\|false) |
## Upgrading from v1
1. Write down the current migration version from schema_migrations
1. `DROP TABLE schema_migrations`
2. Wrap your existing migrations in transactions ([BEGIN/COMMIT](https://dev.mysql.com/doc/refman/5.7/en/commit.html)) if you use multiple statements within one migration.
3. Download and install the latest migrate version.
4. Force the current migration version with `migrate force <current_version>`.