Upstream sync
This commit is contained in:
18
models/contract_info.go
Normal file
18
models/contract_info.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package models
|
||||
|
||||
import "github.com/jinzhu/gorm"
|
||||
|
||||
type ContractInfo struct {
|
||||
gorm.Model
|
||||
RawJSON string `json:"raw_json" gorm:"type:json"`
|
||||
}
|
||||
|
||||
func (ContractInfo) Update() (bool, error) {
|
||||
return false, nil
|
||||
}
|
||||
func (ContractInfo) Create() (bool, error) {
|
||||
return false, nil
|
||||
}
|
||||
func (ContractInfo) Delete() (bool, error) {
|
||||
return false, nil
|
||||
}
|
||||
Reference in New Issue
Block a user