Boris Tacyniak

Results 167 comments of Boris Tacyniak

Hi @bogdaniel, I was also stuck into this situation, you can precise the type as third parameter. ```php return $this->createQueryBuilder('u') ->andWhere('u.id = :value') ->setParameter('value', $value, 'uuid_binary_ordered_time') ->getQuery() ->getOneOrNullResult(); ``` Replace...

Hi @milanobrtlik I don't know. It's working and I don't need an auto-detection of the type on my project 😉

Hi, I don't know exactly how reproduce this issue, but this is an annoying issue. The migration process always try to alter columns without any reasons. In my case, the...

HI @morozov Any update on this one ? Does the @Rixafy helps you to debug ? The issue is still there on `3.3.7` generating 22 migrations while 1 is required.

Hi @Rixafy, I wrote it on my previous comment. In my case, it's generating an Alter table on Datetime to "add" precision which is already applied on the table +...

It was okay on the version 3.3.0.

Same fix but with: ```podspec s.public_header_files = [ 'native/ios/WatermelonDB/**/*.h', ] ``` to build the library on 0.70.x and `use_frameworks! :linkage => :static`

Hi @radex, I still had to change the content of `WatermelonDB.podspec` with: ```pod s.public_header_files = [ 'native/ios/WatermelonDB/**/*.h', ] ``` And copy : ``` node_modules/@nozbe/simdjson/src/simdjson.h ``` In : ``` node_modules/@nozbe/watermelondb/native/shared ```...

This issue doesn't happen with Expo, it's mainly not resolve import in the native side (same file of this issue). Will provide more details later

@KrisLau Exactly this case, all details are mentioned in this comment https://github.com/Nozbe/WatermelonDB/issues/1285#issuecomment-1292619035