{"id":15495105,"url":"https://github.com/samchon/prisma-bug-report-postgres-timestampz","last_synced_at":"2026-03-19T10:10:10.853Z","repository":{"id":180037165,"uuid":"664481083","full_name":"samchon/prisma-bug-report-postgres-timestampz","owner":"samchon","description":"A prisma bug reproduction repo for reporting about `timestampz` type in Postgres","archived":false,"fork":false,"pushed_at":"2023-07-10T04:55:50.000Z","size":47,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-19T10:53:43.528Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/samchon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-10T04:37:20.000Z","updated_at":"2023-07-10T04:56:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"ba0b5fde-0d39-4029-a100-179461bf7dc0","html_url":"https://github.com/samchon/prisma-bug-report-postgres-timestampz","commit_stats":{"total_commits":3,"total_committers":2,"mean_commits":1.5,"dds":"0.33333333333333337","last_synced_commit":"6f4fca146491d307d51fd9dad06e05fd8a97d9ac"},"previous_names":["samchon/prisma-bug-report-postgres-timestampz"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/samchon/prisma-bug-report-postgres-timestampz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samchon%2Fprisma-bug-report-postgres-timestampz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samchon%2Fprisma-bug-report-postgres-timestampz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samchon%2Fprisma-bug-report-postgres-timestampz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samchon%2Fprisma-bug-report-postgres-timestampz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samchon","download_url":"https://codeload.github.com/samchon/prisma-bug-report-postgres-timestampz/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samchon%2Fprisma-bug-report-postgres-timestampz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29667856,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T23:24:07.480Z","status":"ssl_error","status_checked_at":"2026-02-20T23:24:06.202Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-02T08:16:07.414Z","updated_at":"2026-02-20T23:38:50.478Z","avatar_url":"https://github.com/samchon.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## Outline\nBug reproduction repo of Prisma, when `@db.timestampz` typed column being used.\n\nPrisma schema file is here: [src/schema.prisma](https://github.com/samchon/prisma-bug-report-postgres-timestampz/blob/master/src/schema.prisma)\n\nYou can reproduce the bug like below:\n\n```bash\ngit clone https://github.com/samchon/prisma-bug-report-postgres-timestampz\ncd prisma-bug-report-postgres-timestampz\n\nnpm install\nnpm run build:schema\n```\n\n\n\n\n## Story\nSuch bug does not appear when testing other schema models.\n\nFor reference, `src/schema.prisma` file has lots of comments (`///`). It's just my style that describing each tables and columns into the prisma schema file. Also, there're some comment tags like `@format uuid`. It's just for validation of input data before data archiving through [typia](https://github.com/samchon/typia), not for `prisma`. Therefore, don't mind about those comments please.\n\nBy the way, I tried to erase those all comments, but same bug still occurs.\n\n\n\n\n## Error Message\n```bash\n\u003e prisma-bug-report-postgres-timestampz@1.0.0 build:prisma\n\u003e prisma generate --schema=src/schema.prisma\n\nPrisma schema loaded from src\\schema.prisma\nError: Prisma schema validation - (get-dmmf wasm)\nError code: P1012\nerror: Native type Timestampz is not supported for postgresql connector.\n  --\u003e  schema.prisma:66\n   | \n65 |   /// 레코드 생성 일시.\n66 |   created_at DateTime @db.Timestampz\n   | \nerror: Native type Timestampz is not supported for postgresql connector.\n  --\u003e  schema.prisma:146\n   | \n145 |   /// 레코드 생성 일시\n146 |   created_at DateTime @db.Timestampz\n   | \nerror: Native type Timestampz is not supported for postgresql connector.\n  --\u003e  schema.prisma:206\n   | \n205 |   /// 결제 취소 시간.\n206 |   created_at DateTime @db.Timestampz\n   | \nerror: Native type Timestampz is not supported for postgresql connector.\n  --\u003e  schema.prisma:257\n   | \n256 |   /// 웹훅 레코드 생성 일시.\n257 |   created_at DateTime @db.Timestampz\n   | \nerror: Native type Timestampz is not supported for postgresql connector.\n  --\u003e  schema.prisma:308\n   | \n307 |   /// 레코드 생성 일시.\n308 |   created_at DateTime @db.Timestampz\n   | \n\nValidation Error Count: 5\n[Context: getDmmf]\n\nPrisma CLI Version : 4.16.2\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamchon%2Fprisma-bug-report-postgres-timestampz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamchon%2Fprisma-bug-report-postgres-timestampz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamchon%2Fprisma-bug-report-postgres-timestampz/lists"}