stormberry
stormberry copied to clipboard
Access your postgres database effortlessly from dart code.
Hello) I have multiple tables that have columns with the same name that must have unique values. When I try to migrate I get this error Since the error says...
Hi, I have an ```AddressModel``` class with ```fromJson``` expecting a type of ```Map``` as few parameters are nullable. I store ```List``` in another model and I have the TypeConverter for...
Similar to #37, but wanting this sort of behavior, is it possible to currently do an upsert without having to check for presence first? Thank you !
I am still searching for any dart package or library which supports some advanced Query Policies Access Such as RLS with PGSql Please add SUPPORT FOR RLS ,so that extra...
Hey! First, I would like to thank you for your package, so far I really like it. I currently struggle with `@HiddenIn` and `@ViewedIn` syntax. Let's say I have following...
Something that serverpod.dev does that is pretty nifty is to generate model serialization code, and put the classes in a separate dart client package. It makes it really easy for...
At the moment it is not possible to update ManyToMany ~~, ManyToOne or OneToMany~~ relations, because the insert/update models are missing the required attributes (and query). That is required, because...
Currently, view classes implement the model class. This is annoying when defining methods on the model class (such as `toJson`) as the implementation is not inherited.
Hi, I am using `Dart_Frog`, `Stormberry`, `Postgres`. ``` CREATE TABLE Product_Entity ( uid uuid DEFAULT uuid_generate_v4(), title text NOT NULL, description text NOT NULL, price numeric NOT NULL, category text...
Hey! Really love this package. I have a question to the following scenario: The user table needs to be extended with a new column. This new column must not be...