-- RedefineTables PRAGMA defer_foreign_keys=ON; PRAGMA foreign_keys=OFF; CREATE TABLE "new_Attachment" ( "id" TEXT NOT NULL PRIMARY KEY, "name" TEXT NOT NULL, "mimetype" TEXT NOT NULL, "size" INTEGER NOT NULL, "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ); INSERT INTO "new_Attachment" ("id", "mimetype", "name", "size") SELECT "id", "mimetype", "name", "size" FROM "Attachment"; DROP TABLE "Attachment"; ALTER TABLE "new_Attachment" RENAME TO "Attachment"; PRAGMA foreign_keys=ON; PRAGMA defer_foreign_keys=OFF;