orm
Here are 3,923 public repositories matching this topic...
-
Updated
May 31, 2022 - TypeScript
-
Updated
May 31, 2022 - Go
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:
;
后来我在源码中定位到了以下位置,这就有点不合适了吧
Original issue:
Relevant PRs:
diesel-rs/diesel#3035
diesel-rs/diesel#3036
diesel-rs/diesel#3037
diesel-rs/diesel#3092
-
Updated
May 30, 2022 - PHP
-
Updated
May 30, 2022 - Go
-
Updated
Apr 12, 2022 - Python
-
Updated
Apr 3, 2020 - Go
-
Updated
Mar 13, 2022 - JavaScript
-
Updated
May 27, 2022 - Rust
Version
Other
What happened?
After I run migrations I run pg_dump to create the schema file (I tried adding a bunch of flags to reduce what gets put in there):
PGPASSWORD=postgres pg_dump -U postgres -h db -p 5432 --schema public --schema-only --no-tablespaces --no-subscriptions --no-security-labels --no-publications -x currencydb > database/structure.sql
Which has the
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
May 30, 2022 - Java
-
Updated
May 30, 2022 - TypeScript
-
Updated
May 16, 2022 - Python
-
Updated
May 29, 2022 - C#
-
Updated
Apr 29, 2022 - Go
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."
https://github.com/sequelize/sequelize/blob/8a1429d6044123bba3a3f312b2e0c74b0c829990/lib/model.js#L1271
If I create any model with
charset: 'utf8mb4', collate: 'utf8mb4_general_ci'sequelize translates it to this for mysql
CREATE TABLE IF NOT EXISTStablename... ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8mb4_general_ci;On stepping through the code, it seems that the issu