Ariel Mashraki

Results 198 comments of Ariel Mashraki

Hey @wenerme and thanks for opening this PR 🙏 Can you explain what problem this PR solves, and why this option is not enough (`field.JSON("t", T{})` -> `field.JSON("t" &T{})`)?

Do you mean to check if the value is a pointer type? If not, can you elaborate on what exactly you try to do? You can use the `gen.Field.Info` to...

Thanks for adding this @napei (and thanks @tmc for the CR). I'm going to test it on a few projects next week and I'll update you.

> Thanks for adding this @napei (and thanks @tmc for the CR). > > I'm going to test it on a few projects next week and I'll update you. I...

> When i create MOM edge, ent help me to create relation table to store the entity relation. [Edge schema](https://entgo.io/docs/schema-edges#edge-schema) (was added a few months ago) should solve this issue....

Hey @piyongcai 👋 Can you elaborate on why you can't set the schema on the table like this? ```go petT:= sql.Table(pet.Table).Schema(petSchema) ```

Hey @cliedeman and thanks for adding this! It's really amazing. I'll start giving it a look tomorrow, but I can say now, that I prefer to merge it in small...

Hey @mhausenblas and thanks for raising up this issue. Currently, ent supports opensouces using the [ocsql](https://github.com/opencensus-integrations/ocsql) package, and doesn't support OTEL due to lack of database/sql integration (see https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5). However,...

Thanks for the contribution @CharlesGe129 🙏 PR looks fine to me, but integration tests fail. Can you please try to rebase your branch on master? If it won't work, I'll...

Hey @frederikhors 👋 > Is there a way we can AUTOMATICALLY order columns in our tables? You can order the table columns using [Diff Hooks](https://entgo.io/docs/migrate#diff-hook-example) when **tables are created**. e.g....