Files
netmaker/schema/models.go
Vishal Dalwadi 7f40371ffd Task/DB-Migration: Add Key-Value to SQL Migration functionality. (#3380)
* feat(go): add db package;

* feat(go): add jobs table;

* feat(go): add schema migration facade;

* refactor(go): use custom key type to avoid collisions;
2025-04-12 14:07:57 +04:00

9 lines
139 B
Go

package schema
// ListModels lists all the models in this schema.
func ListModels() []interface{} {
return []interface{}{
&Job{},
}
}