https://github.com/f3ath/migrant
SQL migration tool
https://github.com/f3ath/migrant
Last synced: 9 months ago
JSON representation
SQL migration tool
- Host: GitHub
- URL: https://github.com/f3ath/migrant
- Owner: f3ath
- License: mit
- Created: 2022-04-26T01:51:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-02T01:37:58.000Z (over 1 year ago)
- Last Synced: 2025-04-17T10:26:26.366Z (9 months ago)
- Language: Dart
- Homepage: https://pub.dev/packages/migrant
- Size: 37.1 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Database schema migration tool for Dart
A super simple tool which reads the migrations from a source (e.g. from the local file system)
and applies them to a database (e.g. PostgreSQL or SQLite). Nothing fancy.
Supported migrations sources:
- In-memory (included with this package)
- Local file system ([migrant_source_fs](https://pub.dev/packages/migrant_source_fs))
Supported database engines:
- SQLite ([migrant_db_sqlite](https://pub.dev/packages/migrant_db_sqlite))
- PostgreSQL ([migrant_db_postgresql](https://pub.dev/packages/migrant_db_postgresql))
Please see the usage examples in the above packages.