add missing migration (#15369)
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
This commit is contained in:
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";
|
||||
Reference in New Issue
Block a user