Faissal Wahabali
Faissal Wahabali
What's the difference between `toBeWithin` and `toBeBetween`?
I think we don't need another method for each type, since we have `toBeBetween` that does the job.
>PHPMyAdmin is a tool to make it easy to interact with the underlying database engine. Yeah exactly, that's why it's okay to simplify things for the user and not stick...
> Could you tell me a bit more about your use-case? #### Case of storing price in cents We need to get the price converted from cents to USD. ```php...
> Why can't enum have duplicates? I believe only set cannot have duplicates. 1- MySQL does not allow duplicates on ENUM. 2- What's the point from having duplicates in ENUM?
Which version you using? For me v8.0.33 does not allow duplicate enum values. The base point of enums is to strict the inserted values to only specific options, so there...
Are you disabling strict mode?
> Not sure about this, because even if you put 5 there, it won't store the precision to the timestamp. So the message should be correct. The only accepted value...
I'll get to it whenever I got some time.