mirror of
https://git.gibonuddevalla.se/go/dbschema.git
synced 2025-12-05 21:31:14 +01:00
Added Publisher.Version to enable comparisons in applications using this library
This commit is contained in:
parent
d290a67800
commit
2cb694f534
2 changed files with 14 additions and 3 deletions
11
upgrader.go
11
upgrader.go
|
|
@ -28,6 +28,17 @@ func (upgrader *Upgrader) SetLogCallback(callback func(string, string)) {// {{{
|
|||
func (upgrader *Upgrader) SetSqlCallback(callback func(string, int) ([]byte, bool)) {// {{{
|
||||
upgrader.sqlCallback = callback
|
||||
}// }}}
|
||||
// Version returns the current dbschema version for the given database name.
|
||||
func (upgrader *Upgrader) Version(dbName string) (version int, err error) {// {{{
|
||||
dbase, found := upgrader.databases[dbName]
|
||||
if !found {
|
||||
err = fmt.Errorf("Database %s not previously added to the upgrader", dbName)
|
||||
return
|
||||
}
|
||||
|
||||
version, err = dbase.version()
|
||||
return
|
||||
}// }}}
|
||||
|
||||
func (dbase Database) createSchemaTable() (err error) {// {{{
|
||||
dbase.upgrader.logCallback("create", fmt.Sprintf("%s, _db.schema", dbase.DbName))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue