The fantastic ORM library for Golang, aims to be developer friendly
Go to file
yrong1997 d7911300f8
Respect ignore migration when add column (#4276)
continue https://github.com/go-gorm/gorm/pull/4028
2021-04-13 09:39:43 +08:00
.github Remove sqlite_windows test case 2021-03-24 16:56:41 +08:00
callbacks Fix omit associations, close #4161 2021-03-19 15:15:26 +08:00
clause Support Having w/o Group 2021-03-30 18:28:09 +08:00
logger Add IgnoreRecordNotFoundError option for logger 2021-04-09 10:21:01 +08:00
migrator Respect ignore migration when add column (#4276) 2021-04-13 09:39:43 +08:00
schema Update field.go (#4228) 2021-04-02 09:56:38 +08:00
tests Support Having w/o Group 2021-03-30 18:28:09 +08:00
utils Support delete associations with Select when deleting 2020-09-10 21:46:18 +08:00
.gitignore Add field tag to ignore migration (#4028) 2021-02-09 16:03:02 +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 invalid db error and value and invalid value length error (#4151) 2021-03-07 10:56:32 +08:00
callbacks.go Call scopes before parse model value, close #4209 2021-03-24 16:35:39 +08:00
chainable_api.go Call scopes before parse model value, close #4209 2021-03-24 16:35:39 +08:00
errors.go Add IgnoreRecordNotFoundError option for logger 2021-04-09 10:21:01 +08:00
finisher_api.go Fix: FindInBatches ignores errors (#4203) 2021-03-22 14:11:07 +08:00
go.mod Add golang 1.16 2021-03-24 14:22:36 +08:00
go.sum Add golang 1.16 2021-03-24 14:22:36 +08:00
gorm.go sort GORM options before apply 2021-04-09 11:43:24 +08:00
interfaces.go Add GetDBConnector interface 2021-03-19 15:55:38 +08:00
migrator.go Fix to call Scopes with using Migrator 2021-03-19 16:34:51 +08:00
model.go Fix typo 2020-06-09 12:00:43 +08:00
prepare_stmt.go Fix get database connection for prepared stmt, close #4214 2021-03-25 10:17:57 +08:00
scan.go Fix context cancel error, close #4259, close #4260 2021-04-09 10:21:01 +08:00
soft_delete.go chore: improve code quality (#4123) 2021-03-08 10:46:43 +08:00
statement.go build *clause.Expr 2021-03-19 13:21:43 +08:00
statement_test.go Spelling fix for "condtion" -> "condition" (#3042) 2020-06-08 11:38:51 +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