Files
thoughts/thoughts-backend/migration
Gabriel Kaszewski b83b7acf1c feat: Refactor user and thought models to use UUIDs instead of integers
- Updated user and thought models to utilize UUIDs for primary keys.
- Modified persistence functions to accommodate UUIDs for user and thought IDs.
- Implemented tag functionality with new Tag and ThoughtTag models.
- Added migration scripts to create new tables for tags and thought-tag relationships.
- Enhanced thought creation to parse hashtags and link them to thoughts.
- Updated tests to reflect changes in user and thought ID types.
2025-09-06 15:29:38 +02:00
..

Running Migrator CLI

  • Generate a new migration file

    cargo run -- generate MIGRATION_NAME
    
  • Apply all pending migrations

    cargo run
    
    cargo run -- up
    
  • Apply first 10 pending migrations

    cargo run -- up -n 10
    
  • Rollback last applied migrations

    cargo run -- down
    
  • Rollback last 10 applied migrations

    cargo run -- down -n 10
    
  • Drop all tables from the database, then reapply all migrations

    cargo run -- fresh
    
  • Rollback all applied migrations, then reapply all migrations

    cargo run -- refresh
    
  • Rollback all applied migrations

    cargo run -- reset
    
  • Check the status of all migrations

    cargo run -- status