|
-
-
-
-
- package migrations
-
- import (
- "fmt"
-
- "xorm.io/xorm"
- )
-
- func addCommentIDToAction(x *xorm.Engine) error {
-
- type Action struct {
- CommentID int64 `xorm:"INDEX"`
- IsDeleted bool `xorm:"INDEX NOT NULL DEFAULT false"`
- }
-
- if err := x.Sync2(new(Action)); err != nil {
- return fmt.Errorf("Sync2: %v", err)
- }
-
- return nil
- }
|