add missing migration (#15369)

Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
This commit is contained in:
sean-brydon
2024-06-08 14:20:25 +00:00
committed by GitHub
co-authored by Udit Takkar
parent 5c95268d1a
commit e38705c3e8
@@ -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";