Files
Atay-Makhzan/models/models_tidb.go
T

19 lines
354 B
Go
Raw Normal View History

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