Hey i have litle problem with foreignkeys in migra...
# prisma-migrate
a
Hey i have litle problem with foreignkeys in migration. Every time i run comand "npx prisma migrate dev --name" i get 4 keys removed and add those are allmost the same keys and i use them in same way in other tables but only those 2 causing problem
Copy code
ColumnName      Table1 @relation(fields: [ColumnNameId], references: [Id], name: "FirstParameterExactNameSpecifyInTable1")
  ColumnName2     Table1 @relation(fields: [ColumnName2Id], references: [Id], name: "SecondParameterExactNameSpecifyInTable1")
Table1 Receiver lets say
Copy code
FirstParameterExactNameSpecifyInTable1 Organization[]                             @relation("FirstParameterExactNameSpecifyInTable1")
SecondParameterExactNameSpecifyInTable1 Organization[]                             @relation("SecondParameterExactNameSpecifyInTable1")
Meybe some of you could point me direction where could i find solution?