mirror of
https://github.com/not-kennethreitz/records-migrate.git
synced 2026-06-20 15:00:58 +00:00
24 lines
627 B
Markdown
24 lines
627 B
Markdown
# Records-Migrate: a migration system for Records
|
|
|
|
A migration system for the [Records](https://github.com/kennethreitz/records) Python library.
|
|
|
|
## Intented Usage
|
|
|
|
Assuming `DATABASE_URL` is set:
|
|
|
|
$ records-migrate check
|
|
all migrations appear to be applied!
|
|
|
|
$ records-migrate new
|
|
Created file migrations/0003.sql. Feel free to add a suffix to the file name.
|
|
|
|
$ records-migrate apply
|
|
Applied migration 3/5...,,
|
|
|
|
$ records-migrate schema
|
|
Dumps out SQL script for generating the schema.
|
|
|
|
## Considerations
|
|
|
|
- Don't base migration order on file creation time, as Heroku strips the data on deploy.
|