Files
netmaker/schema/models.go
T
VishalDalwadi 5bac8e1b07 feat(go): add schema for user invites table;
1. Schema Definition for User Invites table.
2. Use the newer table everywhere.
3. Migration code for User Invites table;
2026-04-13 10:52:57 +05:30

24 lines
374 B
Go

package schema
// ListModels lists all the models in this schema.
func ListModels() []interface{} {
return []interface{}{
&Job{},
&Egress{},
&UserAccessToken{},
&Event{},
&PendingHost{},
&Nameserver{},
&PostureCheck{},
&User{},
&Network{},
&UserRole{},
&UserGroup{},
&JITRequest{},
&JITGrant{},
&Host{},
&PendingUser{},
&UserInvite{},
}
}