18 lines
768 B
SQL
18 lines
768 B
SQL
-- RedefineTables
|
|
PRAGMA defer_foreign_keys=ON;
|
|
PRAGMA foreign_keys=OFF;
|
|
CREATE TABLE "new_Response" (
|
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
"pleromaNotificationId" TEXT NOT NULL DEFAULT 'null',
|
|
"to" TEXT NOT NULL,
|
|
"request" TEXT,
|
|
"response" TEXT,
|
|
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"processedAt" DATETIME
|
|
);
|
|
INSERT INTO "new_Response" ("createdAt", "id", "pleromaNotificationId", "processedAt", "request", "response", "to") SELECT coalesce("createdAt", CURRENT_TIMESTAMP) AS "createdAt", "id", "pleromaNotificationId", "processedAt", "request", "response", "to" FROM "Response";
|
|
DROP TABLE "Response";
|
|
ALTER TABLE "new_Response" RENAME TO "Response";
|
|
PRAGMA foreign_keys=ON;
|
|
PRAGMA defer_foreign_keys=OFF;
|