- Set Spanish as default language with ephemeral/encrypted privacy focus - Translate all user-facing strings and legal pages to Spanish - Replace Norwegian flag with Spanish flag in footer - Remove Hemmelig/terces.cloud links, add cloudhost.es sponsorship - Rewrite PrivacyPage: zero data collection, ephemeral design emphasis - Rewrite TermsPage: Spanish law, RGPD, paste.es/CloudHost.es references - Update PWA manifest, HTML meta tags, package.json branding - Rename webhook headers to X-Paste-Event / X-Paste-Signature - Update API docs title and contact to paste.es / cloudhost.es Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
44 lines
1.7 KiB
SQL
44 lines
1.7 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `twoFactorBackupCodes` on the `user` table. All the data in the column will be lost.
|
|
- You are about to drop the column `twoFactorSecret` on the `user` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- CreateTable
|
|
CREATE TABLE "twoFactor" (
|
|
"id" TEXT NOT NULL PRIMARY KEY,
|
|
"secret" TEXT NOT NULL,
|
|
"backupCodes" TEXT NOT NULL,
|
|
"userId" TEXT NOT NULL,
|
|
CONSTRAINT "twoFactor_userId_fkey" FOREIGN KEY ("userId") REFERENCES "user" ("id") ON DELETE CASCADE ON UPDATE CASCADE
|
|
);
|
|
|
|
-- RedefineTables
|
|
PRAGMA defer_foreign_keys=ON;
|
|
PRAGMA foreign_keys=OFF;
|
|
CREATE TABLE "new_user" (
|
|
"id" TEXT NOT NULL PRIMARY KEY,
|
|
"name" TEXT NOT NULL,
|
|
"username" TEXT NOT NULL,
|
|
"email" TEXT NOT NULL,
|
|
"emailVerified" BOOLEAN NOT NULL,
|
|
"image" TEXT,
|
|
"createdAt" DATETIME NOT NULL,
|
|
"updatedAt" DATETIME NOT NULL,
|
|
"displayUsername" TEXT,
|
|
"role" TEXT DEFAULT 'user',
|
|
"banned" BOOLEAN DEFAULT false,
|
|
"banReason" TEXT,
|
|
"banExpires" DATETIME,
|
|
"inviteCodeUsed" TEXT,
|
|
"twoFactorEnabled" BOOLEAN DEFAULT false
|
|
);
|
|
INSERT INTO "new_user" ("banExpires", "banReason", "banned", "createdAt", "displayUsername", "email", "emailVerified", "id", "image", "inviteCodeUsed", "name", "role", "twoFactorEnabled", "updatedAt", "username") SELECT "banExpires", "banReason", "banned", "createdAt", "displayUsername", "email", "emailVerified", "id", "image", "inviteCodeUsed", "name", "role", "twoFactorEnabled", "updatedAt", "username" FROM "user";
|
|
DROP TABLE "user";
|
|
ALTER TABLE "new_user" RENAME TO "user";
|
|
CREATE UNIQUE INDEX "user_username_key" ON "user"("username");
|
|
CREATE UNIQUE INDEX "user_email_key" ON "user"("email");
|
|
PRAGMA foreign_keys=ON;
|
|
PRAGMA defer_foreign_keys=OFF;
|