change PrivateKey to type text

This commit is contained in:
Mystikfluu 2022-07-11 11:01:25 +02:00
parent bd528b44be
commit e373e9a39a

View File

@ -13,7 +13,7 @@ CREATE TABLE `users` (
`User_Bio` varchar(100) DEFAULT 'wow such empty', `User_Bio` varchar(100) DEFAULT 'wow such empty',
`User_Avatar` varchar(100) DEFAULT NULL, `User_Avatar` varchar(100) DEFAULT NULL,
`User_PublicKey` varchar(830) DEFAULT NULL, `User_PublicKey` varchar(830) DEFAULT NULL,
`User_PrivateKey` blob, `User_PrivateKey` text,
PRIMARY KEY (`User_ID`,`User_Name`), PRIMARY KEY (`User_ID`,`User_Name`),
UNIQUE KEY `User_Name_UNIQUE` (`User_Name`) UNIQUE KEY `User_Name_UNIQUE` (`User_Name`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;