mirror of
https://github.com/aclindsa/moneygo.git
synced 2024-10-31 16:00:05 -04:00
33 lines
876 B
Go
33 lines
876 B
Go
package main
|
|
|
|
import (
|
|
"database/sql"
|
|
_ "github.com/mattn/go-sqlite3"
|
|
"gopkg.in/gorp.v1"
|
|
"log"
|
|
)
|
|
|
|
var DB *gorp.DbMap = initDB()
|
|
|
|
func initDB() *gorp.DbMap {
|
|
db, err := sql.Open("sqlite3", "file:moneygo.sqlite?cache=shared&mode=rwc")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
dbmap := &gorp.DbMap{Db: db, Dialect: gorp.SqliteDialect{}}
|
|
dbmap.AddTableWithName(User{}, "users").SetKeys(true, "UserId")
|
|
dbmap.AddTableWithName(Session{}, "sessions").SetKeys(true, "SessionId")
|
|
dbmap.AddTableWithName(Account{}, "accounts").SetKeys(true, "AccountId")
|
|
dbmap.AddTableWithName(Security{}, "securities").SetKeys(true, "SecurityId")
|
|
dbmap.AddTableWithName(Transaction{}, "transactions").SetKeys(true, "TransactionId")
|
|
dbmap.AddTableWithName(Split{}, "splits").SetKeys(true, "SplitId")
|
|
|
|
err = dbmap.CreateTablesIfNotExists()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
return dbmap
|
|
}
|