Adding foreign key to existing table gives error 1050 table already exists

后端 未结 9 1106
栀梦
栀梦 2021-01-07 18:11

I\'ve a table CustomizationSet with the columns:

customization_set_guid (which is a non-nullable guid and also the primary key)
creator_account_guid
and a fe         


        
9条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-07 19:02

    So a team member figured this out. The one table was set with the type utf8_general, and another was set to the type default. I didn't think this was an issue, since the default is utf8_general, but apparently mysql just looks at the type names and not the underlying type.

提交回复
热议问题