-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: create migration * chore: remove codacy badge
- Loading branch information
Showing
3 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
packages/prisma/prisma/migrations/20231102191814_remove_twitch/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the column `twitchId` on the `HolodexChannel` table. All the data in the column will be lost. | ||
- You are about to drop the column `twitchSubscriptionId` on the `HolodexChannel` table. All the data in the column will be lost. | ||
- You are about to drop the `TwitchConflict` table. If the table is not empty, all the data it contains will be lost. | ||
*/ | ||
-- DropIndex | ||
DROP INDEX "HolodexChannel_twitchId_key"; | ||
|
||
-- AlterTable | ||
ALTER TABLE "HolodexChannel" DROP COLUMN "twitchId", | ||
DROP COLUMN "twitchSubscriptionId"; | ||
|
||
-- DropTable | ||
DROP TABLE "TwitchConflict"; | ||
|
||
-- DropEnum | ||
DROP TYPE "ModerationActionType"; |