From d05ea66f4bbcf0cc5c8908f3435c68de1b070fa1 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Sat, 12 Oct 2024 02:52:22 +0300 Subject: Начальная версия MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/model/user.go | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkg/model/user.go (limited to 'pkg/model') diff --git a/pkg/model/user.go b/pkg/model/user.go new file mode 100644 index 0000000..ec524a8 --- /dev/null +++ b/pkg/model/user.go @@ -0,0 +1,26 @@ +package model + +import ( + "encoding/gob" + "encoding/json" + "time" + + "github.com/uptrace/bun" +) + +//nolint:gochecknoinits +func init() { + gob.Register(User{}) +} + +type User struct { + bun.BaseModel `bun:"table:users,alias:u"` + + ID int64 `bun:",pk,autoincrement"` + Email string `bun:",notnull,unique"` + Username string `bun:",notnull,unique"` + Password string `bun:",notnull"` + Meta json.RawMessage `bun:",type:jsonb"` + CreatedAt time.Time `bun:",nullzero,notnull,default:current_timestamp"` + DeletedAt time.Time `bun:",soft_delete,nullzero"` +} -- cgit v1.2.3