calcom/prisma/migrations/20211101151249_update_rejected_bookings/migration.sql
Mihai C debef8119e
Rejected bookings should be displayed in cancelled bookings tab (#1100)
* fix: rejected bookings should be displayed in cancelled bookings tab

* fix: add migration to update status of rejected bookings

* unrelated fix

Co-authored-by: Alex van Andel <me@alexvanandel.com>
2021-11-04 22:24:15 +00:00

1 line
68 B
SQL

UPDATE "Booking" SET "status" = 'rejected' WHERE "rejected" = TRUE;