1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-07-12 12:06:22 +02:00

Drop 'UNSIGNED' for 'FLOAT' in DDL for MySQL

This commit is contained in:
Marco
2025-03-17 09:20:37 +01:00
parent 3defd87461
commit e771398527

View File

@ -84,7 +84,7 @@ CREATE TABLE `users_resets` (
CREATE TABLE `users_throttling` ( CREATE TABLE `users_throttling` (
`bucket` varchar(44) CHARACTER SET latin1 COLLATE latin1_general_cs NOT NULL, `bucket` varchar(44) CHARACTER SET latin1 COLLATE latin1_general_cs NOT NULL,
`tokens` float unsigned NOT NULL, `tokens` float NOT NULL,
`replenished_at` int unsigned NOT NULL, `replenished_at` int unsigned NOT NULL,
`expires_at` int unsigned NOT NULL, `expires_at` int unsigned NOT NULL,
PRIMARY KEY (`bucket`), PRIMARY KEY (`bucket`),