forked from MTSR/mapserver
43 lines
750 B
Go
43 lines
750 B
Go
|
package mapobjectdb
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
_ "github.com/mattn/go-sqlite3"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
const migrateScript = `
|
||
|
create table if not exists objects(
|
||
|
id bigint primary key auto_increment,
|
||
|
x int,
|
||
|
y int,
|
||
|
z int,
|
||
|
posx int,
|
||
|
posy int,
|
||
|
posz int,
|
||
|
type varchar,
|
||
|
data blob,
|
||
|
mtime bigint,
|
||
|
);
|
||
|
`
|
||
|
|
||
|
type Sqlite3Accessor struct {
|
||
|
db *sql.DB
|
||
|
filename string
|
||
|
}
|
||
|
|
||
|
func (db *Sqlite3Accessor) Migrate() error {
|
||
|
log.WithFields(logrus.Fields{"filename": db.filename}).Info("Migrating database")
|
||
|
start := time.Now()
|
||
|
_, err := db.db.Exec(migrateScript)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
t := time.Now()
|
||
|
elapsed := t.Sub(start)
|
||
|
log.WithFields(logrus.Fields{"elapsed": elapsed}).Info("Migration completed")
|
||
|
|
||
|
return nil
|
||
|
}
|