17 lines
537 B
SQL
17 lines
537 B
SQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `serial` on the `poses` table. All the data in the column will be lost.
|
||
|
|
- A unique constraint covering the columns `[serial_number]` on the table `poses` will be added. If there are existing duplicate values, this will fail.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- DropIndex
|
||
|
|
DROP INDEX `poses_serial_key` ON `poses`;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE `poses` DROP COLUMN `serial`,
|
||
|
|
ADD COLUMN `serial_number` VARCHAR(191) NULL;
|
||
|
|
|
||
|
|
-- CreateIndex
|
||
|
|
CREATE UNIQUE INDEX `poses_serial_number_key` ON `poses`(`serial_number`);
|