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:
@ -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`),
|
||||||
|
Reference in New Issue
Block a user