Simon Binder
Simon Binder
Hi, the error is not critical (and also likely happened in the previous version, we just didn't log it). Thanks for the report though, this is still something we should...
Thanks for the details! I suspect this might be related to the `ExecutionHeaderAdditionalInfos` reference, could you share the definition of that table as well?
@Dumoulin-Lander You have two tables referencing each other (`ExecutionHeaderAdditionalInfos.actionId` references `ExecutionHeaderActionAdditionalInfos`, which references the first table through `executionHeaderAdditionalInfoId`). Drift's error message here should be much better, but this is a...
With the `alterTable` machinery we already have in place, it shouldn't be too hard to pull off (even though we'll likely create SQL that is even more verbose, haha). That's...
Alright, I've found the root cause but it's not going to be easy to resolve (or at least I don't have an obvious solution). We're running modular analysis to improve...
Note that this error is mostly harmless and doesn't change the generated code. Could you also check whether the table in `drug_formulas.dart` references a table that itself then references the...
I agree with the idea that it should be easier to combine different builders with drift - putting a cheap form of json serialization into drift by default was my...
Thanks for the request! Where would you expect files to be stored in this case, OPFS? Given that the web doesn't really have an obvious file system implementation, I think...
We've recently released a [new attachments helper system](https://pub.dev/documentation/powersync_core/latest/topics/attachments-topic.html) that at least compiles to the web, but doesn't have a builtin storage implementation for OPFS or IndexedDb yet. It would let...
I've experimented with attachments on the web [in this branch](https://github.com/powersync-ja/powersync.dart/pull/339). It may take us a while to release that, but you could also copy the `OpfsLocalStorage` implementation into your project...