Files
calendar/packages/prisma/migrations/20220803091114_drop_daily_event_reference/migration.sql
T
6d79f80928 refactor: use BookingReference instead of DailyEventReference (#3667)
* refactor: use BookingReference instead of DailyEventReference

* refactor: migrate DailyEventReference records to BookingReference

* refactor: drop DailyEventReference table

* fix linting

* Daily Video API adapter fixes

Co-authored-by: zomars <zomars@me.com>
2022-08-10 18:53:05 -06:00

12 lines
299 B
SQL

/*
Warnings:
- You are about to drop the `DailyEventReference` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropForeignKey
ALTER TABLE "DailyEventReference" DROP CONSTRAINT "DailyEventReference_bookingId_fkey";
-- DropTable
DROP TABLE "DailyEventReference";