Files
AnimeTV-Backend/prisma/migrations/20260302160211_rename_order_column/migration.sql
Rafi Arrafif 01ad69a4b0
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m48s
👔 feat: add banner priority ordering logic
2026-03-02 23:07:30 +07:00

17 lines
549 B
SQL

/*
Warnings:
- You are about to drop the column `order` on the `hero_banner` table. All the data in the column will be lost.
- A unique constraint covering the columns `[orderPriority]` on the table `hero_banner` will be added. If there are existing duplicate values, this will fail.
*/
-- DropIndex
DROP INDEX "hero_banner_order_key";
-- AlterTable
ALTER TABLE "hero_banner" DROP COLUMN "order",
ADD COLUMN "orderPriority" INTEGER;
-- CreateIndex
CREATE UNIQUE INDEX "hero_banner_orderPriority_key" ON "hero_banner"("orderPriority");