9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2025-12-27 10:39:11 +00:00

longblob rather than mediumblob

This commit is contained in:
William
2022-07-13 16:39:12 +01:00
parent ae4f005a9c
commit 112e5fe0bd

View File

@@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS `%user_data_table%`
`timestamp` datetime NOT NULL,
`save_cause` varchar(32) NOT NULL,
`pinned` boolean NOT NULL DEFAULT FALSE,
`data` mediumblob NOT NULL,
`data` longblob NOT NULL,
PRIMARY KEY (`version_uuid`, `player_uuid`),
FOREIGN KEY (`player_uuid`) REFERENCES `%users_table%` (`uuid`) ON DELETE CASCADE
);