Skip to content

Commit c30dbd8

Browse files
committed
Fix lint
1 parent afebd2f commit c30dbd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

models/migrations/v165.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func convertHookTaskTypeToVarcharAndTrim(x *xorm.Engine) error {
2121
Name: "VARCHAR",
2222
},
2323
Length: 16,
24-
Nullable: true, // To keep compitable as nullable
24+
Nullable: true, // To keep compatible as nullable
2525
})
2626
if _, err := x.Exec(alterSQL); err != nil {
2727
return err
@@ -48,7 +48,7 @@ func convertHookTaskTypeToVarcharAndTrim(x *xorm.Engine) error {
4848
Name: "VARCHAR",
4949
},
5050
Length: 16,
51-
Nullable: true, // To keep compitable as nullable
51+
Nullable: true, // To keep compatible as nullable
5252
})
5353
if _, err := x.Exec(alterSQL); err != nil {
5454
return err

0 commit comments

Comments
 (0)