26 lines
919 B
SQL
26 lines
919 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `updatedAt` to the `KmsAlias` 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_KmsAlias" (
|
|
"name" TEXT NOT NULL,
|
|
"accountId" TEXT NOT NULL,
|
|
"region" TEXT NOT NULL,
|
|
"kmsKeyId" TEXT NOT NULL,
|
|
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"updatedAt" DATETIME NOT NULL,
|
|
|
|
PRIMARY KEY ("accountId", "region", "name"),
|
|
CONSTRAINT "KmsAlias_kmsKeyId_fkey" FOREIGN KEY ("kmsKeyId") REFERENCES "KmsKey" ("id") ON DELETE RESTRICT ON UPDATE CASCADE
|
|
);
|
|
INSERT INTO "new_KmsAlias" ("accountId", "kmsKeyId", "name", "region") SELECT "accountId", "kmsKeyId", "name", "region" FROM "KmsAlias";
|
|
DROP TABLE "KmsAlias";
|
|
ALTER TABLE "new_KmsAlias" RENAME TO "KmsAlias";
|
|
PRAGMA foreign_keys=ON;
|
|
PRAGMA defer_foreign_keys=OFF;
|