The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust/main/agents/scraper/migration
Danil Nemirovsky 8e50c2af21
feat: Remove unique chain id index from db migration script (#4834)
3 weeks ago
..
bin feat: Scraper stores input data from Ethereum transactions (#4794) 4 weeks ago
src feat: Remove unique chain id index from db migration script (#4834) 3 weeks ago
Cargo.toml feat: Splitting `rust` workspace into `main` and `sealevel` (#4438) 2 months ago
README.md feat: Splitting `rust` workspace into `main` and `sealevel` (#4438) 2 months ago

README.md

Running Migrator CLI

  • Generate a new migration file
    cargo run -- migrate 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