ReanGD/go-web-search

View on GitHub
database/tbl_host.go

Summary

Maintainability
A
0 mins
Test Coverage
package database

// Host - host information
type Host struct {
    ID               int64  `gorm:"primary_key;not null"`
    Name             string `gorm:"size:255;unique_index;not null"`
    RobotsStatusCode int    `gorm:"not null"`
    RobotsData       []byte
}