github.com/octohelm/storage@v0.0.0-20240516030302-1ac2cc1ea347/testdata/model/org.go (about) 1 package model 2 3 // Org 4 // +gengo:table 5 // @def primary ID 6 // @def unique_index i_name Name 7 // @def index i_created_at CreatedAt 8 type Org struct { 9 ID uint64 `db:"f_id,autoincrement"` 10 Name string `db:"f_name,size=255,default=''"` 11 OperateTimeWithDeleted 12 }