gitea源码

123456789101112131415161718
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_10
  4. import "xorm.io/xorm"
  5. func ChangeSomeColumnsLengthOfRepo(x *xorm.Engine) error {
  6. type Repository struct {
  7. ID int64 `xorm:"pk autoincr"`
  8. Description string `xorm:"TEXT"`
  9. Website string `xorm:"VARCHAR(2048)"`
  10. OriginalURL string `xorm:"VARCHAR(2048)"`
  11. }
  12. return x.Sync(new(Repository))
  13. }