Skip to content

Commit 2e5bf78

Browse files
authored
Merge pull request #3896 from juliusliu02/patch-2
Fix rollback order
2 parents 4f42953 + b43a13b commit 2e5bf78

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)