Implement session creation

This commit is contained in:
Vojtěch Káně
2021-03-29 20:37:52 +02:00
parent 782f96ebbd
commit a5bc7c6984
10 changed files with 180 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
package schema
import (
"entgo.io/ent"
)
// Provides a DBMS independent way of obtaining unique values
type CodesSequence struct {
ent.Schema
}