2016-12-23 06:19:10 -05:00
|
|
|
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:lunch.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")
|
2016-12-23 08:30:29 -05:00
|
|
|
dbmap.AddTableWithName(Attendee{}, "attendees").SetKeys(true, "AttendeeId")
|
2016-12-24 10:00:21 -05:00
|
|
|
dbmap.AddTableWithName(Suggestion{}, "suggestions").SetKeys(true, "SuggestionId")
|
2016-12-23 06:19:10 -05:00
|
|
|
|
|
|
|
err = dbmap.CreateTablesIfNotExists()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return dbmap
|
|
|
|
}
|