github.com/authzed/spicedb@v1.32.1-0.20240520085336-ebda56537386/pkg/migrate/context.go (about)

     1  package migrate
     2  
     3  // MigrationVariable contains constants that can be used as context keys that might
     4  // be relevant in a number of different migration scenarios.
     5  type MigrationVariable int
     6  
     7  const (
     8  	// BackfillBatchSize represents the number of items that should be backfilled in a
     9  	// single step of an incremental backfill, and should be of type uint64.
    10  	BackfillBatchSize MigrationVariable = iota
    11  )