aboutsummaryrefslogtreecommitdiffstats
path: root/models/migrations/v77.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/migrations/v77.go')
-rw-r--r--models/migrations/v77.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/models/migrations/v77.go b/models/migrations/v77.go
deleted file mode 100644
index d62fbe7fb6..0000000000
--- a/models/migrations/v77.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
-
-package migrations
-
-import (
- "xorm.io/xorm"
-)
-
-func addUserDefaultTheme(x *xorm.Engine) error {
- type User struct {
- Theme string `xorm:"VARCHAR(30) NOT NULL DEFAULT ''"`
- }
-
- return x.Sync2(new(User))
-}