mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-31 21:12:51 +09:00
Upgrade gopkg.in/testfixtures.v2 (#4999)
This commit is contained in:
28
vendor/gopkg.in/testfixtures.v2/deprecated.go
generated
vendored
28
vendor/gopkg.in/testfixtures.v2/deprecated.go
generated
vendored
@ -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
|
||||
}
|
||||
)
|
||||
|
Reference in New Issue
Block a user