Skip to content

Commit 1afdd24

Browse files
abrookinsclaude
andcommitted
Fix spellcheck issues in migration documentation
Remove duplicate 'om' command prefixes in migration documentation. Commands should be 'om migrate-data' not 'om om migrate-data'. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent a728492 commit 1afdd24

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/migrations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,16 @@ Data migrations handle transformations of your actual data. Use these when you n
7272

7373
```bash
7474
# Check migration status
75-
om om migrate-data status
75+
om migrate-data status
7676

7777
# Run pending migrations
78-
om om migrate-data run
78+
om migrate-data run
7979

8080
# Dry run (see what would happen)
81-
om om migrate-data run --dry-run
81+
om migrate-data run --dry-run
8282

8383
# Create new migration
84-
om om migrate-data create migration_name
84+
om migrate-data create migration_name
8585
```
8686

8787
### Migration Status

0 commit comments

Comments
 (0)