Skip to content

Commit b43a13b

Browse files
authored
Update part13c.md
Fix rollback order of memberships and teams.
1 parent 4f42953 commit b43a13b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/13/en/part13c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,8 @@ module.exports = {
567567
})
568568
},
569569
down: async ({ context: queryInterface }) => {
570-
await queryInterface.dropTable('teams')
571570
await queryInterface.dropTable('memberships')
571+
await queryInterface.dropTable('teams')
572572
},
573573
}
574574
```

0 commit comments

Comments
 (0)