Gabriel Prá
Gabriel Prá
I'm also looking forward for this merge!
This is how I did to change the column `role` from my `users` table from `string` to `UserRoleEnum`. ```ex def up do UserRoleEnum.create_type execute "alter table users alter column role...
I'm also interested in this feature! My use case is for storing a big amount of time-series data in Elasticsearch, so having separate indices by timeframe (e.g. one index per...
Sounds good! Small thing: there's no `Repo.count` function, and I think we should still accept the field to be counted as argument
Hey @cpursley, thanks for the suggestion! I have already thought about this in the past, but in my current implementations, there's usually a reasonable difference between the Ecto Schema and...
From the [ecto docs](https://hexdocs.pm/ecto/Ecto.Schema.html#module-schema-attributes): > @primary_key - configures the schema primary key. It expects a tuple {field_name, type, options} with the primary key field name, type (typically :id or :binary_id,...
> Flux: > > * A PR is merged to the master branch - The bump version workflow will run > * A new release is created - The npm...
I agree that it's annoying, but I also quite like having the same API for Query and Object authorization. However, now it's a "same-but-not-really" API, so I would also be...
Very nice proposal! I would break this into 2 tasks, though. One to implement the Reset middleware without any breaking changes in the API, and later this general refactoring, which...
That's a great idea! We don't have nothing like that internally, we pretty much rely on our tests, so for example for a query that is admin only we have...