Versioning fix

This commit is contained in:
edwardro22
2017-09-07 15:00:18 +00:00
parent 411b049591
commit 2c7d27745c
30 changed files with 347 additions and 1680 deletions

View File

@@ -88,3 +88,7 @@ func (self *PostgresStorage) notExtraFieldsExistsQry(field string) string {
func (self *PostgresStorage) notExtraFieldsValueQry(field, value string) string {
return fmt.Sprintf(" NOT (extra_fields ?'%s' AND (extra_fields ->> '%s') = '%s')", field, field, value)
}
func (self *PostgresStorage) GetStorageType() string {
return utils.POSTGRES
}