Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:18:24 +08:00
commit b910cf03f8
8 changed files with 249 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# References
Bundled resources for database-migration-manager skill
- [ ] database_migration_best_practices.md Provides best practices for writing database migrations, including idempotency, transaction management, and data integrity.
- [ ] postgresql_migration_examples.md Examples of common PostgreSQL migrations, such as adding columns, creating tables, and adding indexes.
- [ ] mysql_migration_examples.md Examples of common MySQL migrations.
- [ ] sqlite_migration_examples.md Examples of common SQLite migrations.
- [ ] mongodb_migration_examples.md Examples of common MongoDB migrations.
- [ ] migration_file_format.md Describes the expected format of migration files, including naming conventions and content structure.
- [ ] error_handling_guide.md Provides guidance on handling errors during migration creation, application, and rollback.