51 lines
2.6 KiB
SQL
51 lines
2.6 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `manufacturer` to the `Device` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `model` to the `Device` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `name` to the `Device` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- RedefineTables
|
|
PRAGMA defer_foreign_keys=ON;
|
|
PRAGMA foreign_keys=OFF;
|
|
CREATE TABLE "new_Device" (
|
|
"id" TEXT NOT NULL PRIMARY KEY,
|
|
"name" TEXT NOT NULL,
|
|
"manufacturer" TEXT NOT NULL,
|
|
"model" TEXT NOT NULL,
|
|
"inventoryNumber" TEXT NOT NULL,
|
|
"serialNumber" TEXT,
|
|
"productNumber" TEXT,
|
|
"comment" TEXT,
|
|
"ipv4Address" TEXT,
|
|
"ipv6Address" TEXT,
|
|
"macAddress" TEXT,
|
|
"username" TEXT,
|
|
"passwordHash" TEXT,
|
|
"groupId" TEXT,
|
|
"locationId" TEXT,
|
|
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"updatedAt" DATETIME NOT NULL,
|
|
"createdById" TEXT,
|
|
"updatedById" TEXT,
|
|
CONSTRAINT "Device_groupId_fkey" FOREIGN KEY ("groupId") REFERENCES "DeviceGroup" ("id") ON DELETE SET NULL ON UPDATE CASCADE,
|
|
CONSTRAINT "Device_locationId_fkey" FOREIGN KEY ("locationId") REFERENCES "Location" ("id") ON DELETE SET NULL ON UPDATE CASCADE,
|
|
CONSTRAINT "Device_createdById_fkey" FOREIGN KEY ("createdById") REFERENCES "User" ("id") ON DELETE SET NULL ON UPDATE CASCADE,
|
|
CONSTRAINT "Device_updatedById_fkey" FOREIGN KEY ("updatedById") REFERENCES "User" ("id") ON DELETE SET NULL ON UPDATE CASCADE
|
|
);
|
|
INSERT INTO "new_Device" ("comment", "createdAt", "createdById", "groupId", "id", "inventoryNumber", "locationId", "productNumber", "serialNumber", "updatedAt", "updatedById") SELECT "comment", "createdAt", "createdById", "groupId", "id", "inventoryNumber", "locationId", "productNumber", "serialNumber", "updatedAt", "updatedById" FROM "Device";
|
|
DROP TABLE "Device";
|
|
ALTER TABLE "new_Device" RENAME TO "Device";
|
|
CREATE UNIQUE INDEX "Device_inventoryNumber_key" ON "Device"("inventoryNumber");
|
|
CREATE UNIQUE INDEX "Device_ipv4Address_key" ON "Device"("ipv4Address");
|
|
CREATE UNIQUE INDEX "Device_ipv6Address_key" ON "Device"("ipv6Address");
|
|
CREATE UNIQUE INDEX "Device_macAddress_key" ON "Device"("macAddress");
|
|
CREATE UNIQUE INDEX "Device_username_key" ON "Device"("username");
|
|
CREATE UNIQUE INDEX "Device_passwordHash_key" ON "Device"("passwordHash");
|
|
CREATE INDEX "Device_inventoryNumber_idx" ON "Device"("inventoryNumber");
|
|
CREATE INDEX "Device_groupId_idx" ON "Device"("groupId");
|
|
CREATE INDEX "Device_locationId_idx" ON "Device"("locationId");
|
|
PRAGMA foreign_keys=ON;
|
|
PRAGMA defer_foreign_keys=OFF;
|