File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ require (
122
122
mvdan.cc/xurls/v2 v2.4.0
123
123
strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
124
124
xorm.io/builder v0.3.12
125
- xorm.io/xorm v1.3.3-0.20230219231735-056cecc97e9e
125
+ xorm.io/xorm v1.3.3-0.20230623150031-18f8e7a86c75
126
126
)
127
127
128
128
require (
Original file line number Diff line number Diff line change @@ -1923,5 +1923,5 @@ strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251/go.mod h1:
1923
1923
xorm.io/builder v0.3.11-0.20220531020008-1bd24a7dc978 /go.mod h1:aUW0S9eb9VCaPohFCH3j7czOx1PMW3i1HrSzbLYGBSE =
1924
1924
xorm.io/builder v0.3.12 h1:ASZYX7fQmy+o8UJdhlLHSW57JDOkM8DNhcAF5d0LiJM =
1925
1925
xorm.io/builder v0.3.12 /go.mod h1:aUW0S9eb9VCaPohFCH3j7czOx1PMW3i1HrSzbLYGBSE =
1926
- xorm.io/xorm v1.3.3-0.20230219231735-056cecc97e9e h1:d5PY6mwuQK5/7T6VKfFswaKMzLmGTHkJ/ZS7+cUIAjk =
1927
- xorm.io/xorm v1.3.3-0.20230219231735-056cecc97e9e /go.mod h1:9NbjqdnjX6eyjRRhh01GHm64r6N9shTb/8Ak3YRt8Nw =
1926
+ xorm.io/xorm v1.3.3-0.20230623150031-18f8e7a86c75 h1:ReBAlO50dCIXCWF8Gbi0ZRa62AGAwCJNCPaUNUa7JSg =
1927
+ xorm.io/xorm v1.3.3-0.20230623150031-18f8e7a86c75 /go.mod h1:9NbjqdnjX6eyjRRhh01GHm64r6N9shTb/8Ak3YRt8Nw =
Original file line number Diff line number Diff line change @@ -123,7 +123,10 @@ func newXORMEngine() (*xorm.Engine, error) {
123
123
124
124
// SyncAllTables sync the schemas of all tables, is required by unit test code
125
125
func SyncAllTables () error {
126
- return x .StoreEngine ("InnoDB" ).Sync2 (tables ... )
126
+ _ , err := x .StoreEngine ("InnoDB" ).SyncWithOptions (xorm.SyncOptions {
127
+ WarnIfDatabaseColumnMissed : true ,
128
+ }, tables ... )
129
+ return err
127
130
}
128
131
129
132
// InitEngine initializes the xorm.Engine and sets it as db.DefaultContext
You can’t perform that action at this time.
0 commit comments