9 lines
244 B
SQL
9 lines
244 B
SQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- A unique constraint covering the columns `[uuid]` on the table `devices` will be added. If there are existing duplicate values, this will fail.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- CreateIndex
|
||
|
|
CREATE UNIQUE INDEX `devices_uuid_key` ON `devices`(`uuid`);
|