10 lines
255 B
SQL
10 lines
255 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `sortIndex` on the `CommissionRequest` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "CommissionRequest" DROP COLUMN "sortIndex",
|
|
ADD COLUMN "index" SERIAL NOT NULL;
|