orm
Here are 3,424 public repositories matching this topic...
-
Updated
Sep 14, 2021 - TypeScript
-
Updated
Sep 13, 2021 - Go
-
Updated
Aug 11, 2021 - Scala
Bug description
On windows, I run prisma format
and note the unusual file ending. The lines are all LF, but the very last line is CRLF.
This causes issue on my Linux CI where it formats it ending in LF's only, causing a diff to occur and the build to fail.
How to reproduce
- On windows do prisma format
- Open in HxD or similar
- See attached:
:
#[derive(Insertable)]
struct Foo {
#[column_name = "type"]
ty: String
}
This code is wrong because eventhough the table has a column called type, the auto-generated schema.rs
file renames that to type_ to avoid using a keyword as an
-
Updated
Apr 20, 2021 - Python
-
Updated
Apr 3, 2020 - Go
-
Updated
Sep 8, 2021 - JavaScript
-
Updated
Sep 13, 2021 - Go
-
Updated
Sep 12, 2021 - Rust
Hello,
I use postgres 12 with “MATERIALIZED” statement,
and I once asked on Discord how to use the “MATERIALIZED” statement in go-pg,
and get that is not support now.
Expected Behavior
WITH AS MATERIALIZED (...)
-
Updated
Sep 13, 2021 - Java
Is your feature request related to a problem? Please describe.
I'm interested in using MikroORM in a system where migrations and schema management are handled by another tool. I attempted to use the EntityGenerator
functionality but there doesn't appear to be any way to limit entity generation to specific schemas (in this case Postgres)
Describe the solution you'd like
I'd like to b
-
Updated
Sep 14, 2021 - C#
Improve this page
Add a description, image, and links to the orm topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the orm topic, visit your repo's landing page and select "manage topics."
Issue Description
What are you doing?
I am trying to strongly type my application using Typescript and Sequelize. I have noticed th