aboutsummaryrefslogtreecommitdiffstats
path: root/models/models_tidb.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/models_tidb.go')
-rw-r--r--models/models_tidb.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/models/models_tidb.go b/models/models_tidb.go
new file mode 100644
index 0000000000..20d9819706
--- /dev/null
+++ b/models/models_tidb.go
@@ -0,0 +1,16 @@
+// +build tidb
+
+// Copyright 2015 The Gogs 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 models
+
+import (
+ _ "github.com/go-xorm/tidb"
+ _ "github.com/pingcap/tidb"
+)
+
+func init() {
+ EnableTidb = true
+}