Upgrade gopkg.in/testfixtures.v2 (#4999)

This commit is contained in:
Mura Li 2018-10-03 03:20:02 +08:00 committed by techknowlogick
parent b8d048fa0d
commit dba955be7c
13 changed files with 708 additions and 171 deletions

View file

@ -5,22 +5,38 @@ import (
)
type (
DataBaseHelper Helper // Deprecated: Use Helper instead
// DataBaseHelper is the helper interface
// Deprecated: Use Helper instead
DataBaseHelper Helper
PostgreSQLHelper struct { // Deprecated: Use PostgreSQL{} instead
// PostgreSQLHelper is the PostgreSQL helper
// Deprecated: Use PostgreSQL{} instead
PostgreSQLHelper struct {
PostgreSQL
UseAlterConstraint bool
}
MySQLHelper struct { // Deprecated: Use MySQL{} instead
// MySQLHelper is the MySQL helper
// Deprecated: Use MySQL{} instead
MySQLHelper struct {
MySQL
}
SQLiteHelper struct { // Deprecated: Use SQLite{} instead
// SQLiteHelper is the SQLite helper
// Deprecated: Use SQLite{} instead
SQLiteHelper struct {
SQLite
}
SQLServerHelper struct { // Deprecated: Use SQLServer{} instead
// SQLServerHelper is the SQLServer helper
// Deprecated: Use SQLServer{} instead
SQLServerHelper struct {
SQLServer
}
OracleHelper struct { // Deprecated: Use Oracle{} instead
// OracleHelper is the Oracle helper
// Deprecated: Use Oracle{} instead
OracleHelper struct {
Oracle
}
)