Merge bdc7fac25deed7f3a4d9e6dd228455a27361ae26 into 9acaa33324bbcc78239a1c913d4f1292c12177b9
This commit is contained in:
commit
eeed6cb91d
@ -88,6 +88,15 @@ func (s sqlite3) HasColumn(tableName string, columnName string) bool {
|
|||||||
return count > 0
|
return count > 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s sqlite3) HasForeignKey(tableName string, foreignKeyName string) bool {
|
||||||
|
// We return intentional true here since foreign keys are a little bit
|
||||||
|
// complicated on SQLite. You have to enable them first to being able to
|
||||||
|
// create and use them. Since a true value here prevents any further query to
|
||||||
|
// create the foreign key we just added that. For further information about
|
||||||
|
// foreign keys on SQLite take a look at http://www.sqlite.org/foreignkeys.html
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
func (s sqlite3) CurrentDatabase() (name string) {
|
func (s sqlite3) CurrentDatabase() (name string) {
|
||||||
var (
|
var (
|
||||||
ifaces = make([]interface{}, 3)
|
ifaces = make([]interface{}, 3)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user