[PHP-WEBMASTER] [web-master] main: Change user_profile table to utf8mb4

Author: Joe Ferguson (svpernova09)
Committer: Derick Rethans (derickr)
Date: 2026-04-01T10:48:03-04:00

Commit: Change user_profile table to utf8mb4 · php/web-master@e05b49a · GitHub
Raw diff: https://github.com/php/web-master/commit/e05b49a9b9634d30eb633be01cd0afda5262af89.diff

Change user_profile table to utf8mb4

Changed paths:
  M schema.sql

Diff:

diff --git a/schema.sql b/schema.sql
index 778c148..bdc2d5f 100644
--- a/schema.sql
+++ b/schema.sql
@@ -263,7 +263,7 @@ CREATE TABLE `users_profile` (
   `markdown` text NOT NULL,
   `html` text NOT NULL,
   PRIMARY KEY (`userid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--