package entity

type Keyword struct {
	Id     uint   `gorm:"column:id;primaryKey;autoIncrement"`
	Region string `gorm:"column:region;type:varchar(255);not null"`
	Word   string `gorm:"column:word;type:varchar(255);not null"`
}

func (Keyword) TableName() string {
	return "Keyword"
}