You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
192 B
Go

package models
import "gorm.io/gorm"
type Note struct {
gorm.Model
User_id string
Title string `validate:"required,min=3"`
Note string `validate:"required,min=3"`
Tag string
}