diff --git a/prisma/migrations/20230723104112_added_account_balances_to_account/migration.sql b/prisma/migrations/20230723104112_added_account_balances_to_account/migration.sql index 713cc6c3e..d13327514 100644 --- a/prisma/migrations/20230723104112_added_account_balances_to_account/migration.sql +++ b/prisma/migrations/20230723104112_added_account_balances_to_account/migration.sql @@ -18,10 +18,10 @@ ALTER TABLE "AccountBalance" ADD CONSTRAINT "AccountBalance_accountId_userId_fke INSERT INTO "AccountBalance" ("accountId", "createdAt", "date", "id", "updatedAt", "userId", "value") SELECT "id", - "createdAt", - "createdAt", + "updatedAt", + "updatedAt", "id", - "createdAt", + "updatedAt", "userId", "balance" FROM "Account";