gitea源码

1234567891011121314151617
  1. // Copyright 2022 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_16
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func IncreaseCredentialIDTo410(x *xorm.Engine) error {
  8. // no-op
  9. // v208 was completely wrong
  10. // So now we have to no-op again.
  11. return nil
  12. }