Skip to content

Commit

Permalink
add missing migration (calcom#15369)
Browse files Browse the repository at this point in the history
Co-authored-by: Udit Takkar <[email protected]>
  • Loading branch information
sean-brydon and Udit-takkar authored Jun 8, 2024
1 parent 5c95268 commit e38705c
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
Warnings:
- You are about to drop the column `logo` on the `Team` table. All the data in the column will be lost.
- You are about to drop the column `avatar` on the `users` table. All the data in the column will be lost.
- You are about to drop the column `away` on the `users` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "Team" DROP COLUMN "logo";

-- AlterTable
ALTER TABLE "users" DROP COLUMN "avatar",
DROP COLUMN "away";

0 comments on commit e38705c

Please sign in to comment.