feat:#16 added migration for feeds with uuid

This commit is contained in:
Elmar Kresse
2023-10-25 12:00:59 +02:00
parent 927f755698
commit 3cd9f1fdbd
4 changed files with 80 additions and 1 deletions

View File

@ -27,3 +27,10 @@ type FeedCollection struct {
Course string `db:"course" json:"course"`
UserDefinedName string `db:"userDefinedName" json:"userDefinedName"`
}
type UUIDFeedCollection struct {
UUID string `db:"uuid" json:"uuid"`
Name string `db:"Name" json:"name"`
Course string `db:"course" json:"course"`
UserDefinedName string `db:"userDefinedName" json:"userDefinedName"`
}