The fantastic ORM library for Golang, aims to be developer friendly
Go to file
Michael Nussbaum 45ef1da7e4
Fix naming longer then 64 chars with dots in table (#5045)
Ensures that foreign key relationships and indexes are given
syntactically valid names when their name length exceeds 64 characters
and they contained dot characters within the name. This is most often
relevant when a Postgres table name is fully qualified by including its schema
as part of its name
2022-02-24 10:10:20 +08:00
.github Update auto stale days 2022-02-19 17:11:23 +08:00
callbacks Fix update with customized time type, close #5101 2022-02-23 17:48:26 +08:00
clause Fixed the use of "or" to be " OR ", to account for words that contain "or" or "and" (e.g., 'score', 'band') in a sql statement as the name of a field. 2022-02-20 08:22:21 +08:00
logger strings.replace -> strings.replaceAll (#5095) 2022-02-20 19:55:04 +08:00
migrator Improve support for AutoMigrate 2022-02-19 23:42:20 +08:00
schema Fix naming longer then 64 chars with dots in table (#5045) 2022-02-24 10:10:20 +08:00
tests Fix update with customized time type, close #5101 2022-02-23 17:48:26 +08:00
utils fix typo in TxCommitter interface comment & improve CheckTruth, chek val empty first (#5094) 2022-02-20 21:19:15 +08:00
.gitignore Add field tag to ignore migration (#4028) 2021-02-09 16:03:02 +08:00
.golangci.yml Use Golangci configuration file (#4896) 2021-12-10 17:44:11 +08:00
License Add MIT License file 2015-01-05 08:59:18 +08:00
README.md Fix typo in README (#4012) 2021-01-28 10:21:58 +08:00
association.go Add serializer support (#5078) 2022-02-19 17:02:53 +08:00
callbacks.go Don't query with primary key when using Save 2021-11-08 18:49:59 +08:00
chainable_api.go Fix Join condition with DB 2021-09-28 22:37:15 +08:00
errors.go preoload not allowd before count (#5023) 2022-01-30 18:17:06 +08:00
finisher_api.go Inherit clone flag (NewDB) on transaction creation (#5012) 2022-02-20 08:33:12 +08:00
go.mod Upgrade go.mod 2021-12-10 17:50:19 +08:00
go.sum Upgrade go.mod 2021-12-10 17:50:19 +08:00
gorm.go Migrator AlterColumn with full data type 2022-02-10 10:40:48 +08:00
interfaces.go fix typo in TxCommitter interface comment & improve CheckTruth, chek val empty first (#5094) 2022-02-20 21:19:15 +08:00
migrator.go Enhance migrator Columntype interface (#5088) 2022-02-19 17:02:53 +08:00
model.go Fix typo 2020-06-09 12:00:43 +08:00
prepare_stmt.go feat: ajust PreparedStmtDB unlock location and BuildCondition if logic (#4681) 2021-10-08 11:16:58 +08:00
scan.go Add serializer support (#5078) 2022-02-19 17:02:53 +08:00
soft_delete.go Add serializer support (#5078) 2022-02-19 17:02:53 +08:00
statement.go Add serializer support (#5078) 2022-02-19 17:02:53 +08:00
statement_test.go Support specify select/omit columns with table 2021-10-08 17:51:27 +08:00

README.md

GORM

The fantastic ORM library for Golang, aims to be developer friendly.

go report card test status Join the chat at https://gitter.im/jinzhu/gorm Open Collective Backer Open Collective Sponsor MIT license Go.Dev reference

Overview

  • Full-Featured ORM
  • Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism, Single-table inheritance)
  • Hooks (Before/After Create/Save/Update/Delete/Find)
  • Eager loading with Preload, Joins
  • Transactions, Nested Transactions, Save Point, RollbackTo to Saved Point
  • Context, Prepared Statement Mode, DryRun Mode
  • Batch Insert, FindInBatches, Find To Map
  • SQL Builder, Upsert, Locking, Optimizer/Index/Comment Hints, NamedArg, Search/Update/Create with SQL Expr
  • Composite Primary Key
  • Auto Migrations
  • Logger
  • Extendable, flexible plugin API: Database Resolver (Multiple Databases, Read/Write Splitting) / Prometheus…
  • Every feature comes with tests
  • Developer Friendly

Getting Started

Contributing

You can help to deliver a better GORM, check out things you can do

License

© Jinzhu, 2013~time.Now

Released under the MIT License