* feat: added new columns into the TeamCollections and UserCollections models * feat: completed addition of new data field in TeamCollection * feat: completed addition of new data field in UserCollections * chore: updated all tests in team-collection module * chore: added tests for updateTeamCollection method in team-collection module * chore: refactored all existing testcases in user-collection to reflect new changes * chore: added new testcases for updateUserCollection method in user-collection module * chore: made data field optional in team and user collections * chore: fixed edgecases for data being null * chore: resolved issue with team-request testcases * chore: completed changes requested in PR review * chore: changed target to prod in hoppscotch-old-backend service
6 lines
145 B
SQL
6 lines
145 B
SQL
-- AlterTable
|
|
ALTER TABLE "TeamCollection" ADD COLUMN "data" JSONB;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "UserCollection" ADD COLUMN "data" JSONB;
|