2016-11-10 11:43:49 +01:00
|
|
|
// +build tidb
|
2015-09-06 22:31:22 +02:00
|
|
|
|
|
|
|
// 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-12 21:31:36 +02:00
|
|
|
"github.com/ngaut/log"
|
2015-09-06 22:31:22 +02:00
|
|
|
_ "github.com/pingcap/tidb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2016-08-11 23:38:45 +02:00
|
|
|
EnableTiDB = true
|
2015-09-12 21:31:36 +02:00
|
|
|
log.SetLevelByString("error")
|
2015-09-06 22:31:22 +02:00
|
|
|
}
|