:wave: When I'm trying to do a DB migration I'm ge...
# kolide
b
👋 When I'm trying to do a DB migration I'm getting
Copy code
20200405120000_UpdateLabelStorage.go (create label_membership table: Error 1050: Table 'label_membership' already exists), quitting migration.
Am I looking at some DB surgery to migrate?
Copy code
fleet version
fleet version 3.1.0
z
Yes, I think so. Probably you need
drop table label_membership
.
Unfortunately MySQL does not handle table creation within transactions so we can end up in weird states when migrations fail.
b
fun
1
worked, ty
🍻 1