2016-11-10 16:13:49 +05:30
|
|
|
// +build tidb
|
2015-09-07 02:01:22 +05:30
|
|
|
|
|
|
|
// 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"
|
2015-09-13 01:01:36 +05:30
|
|
|
"github.com/ngaut/log"
|
2015-09-07 02:01:22 +05:30
|
|
|
_ "github.com/pingcap/tidb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2016-08-12 03:08:45 +05:30
|
|
|
EnableTiDB = true
|
2015-09-13 01:01:36 +05:30
|
|
|
log.SetLevelByString("error")
|
2015-09-07 02:01:22 +05:30
|
|
|
}
|