diff --git a/packages/prisma/migrations/20240607082125_removal_of_logo_and_avatar/migration.sql b/packages/prisma/migrations/20240607082125_removal_of_logo_and_avatar/migration.sql new file mode 100644 index 00000000000000..aed239a7b0169b --- /dev/null +++ b/packages/prisma/migrations/20240607082125_removal_of_logo_and_avatar/migration.sql @@ -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";