initial public commit

This commit is contained in:
Brad Rydzewski
2014-02-07 03:10:01 -07:00
commit d5e5797934
183 changed files with 15701 additions and 0 deletions

24
pkg/database/database.go Normal file
View File

@@ -0,0 +1,24 @@
package database
import (
"database/sql"
"log"
"github.com/drone/drone/pkg/database/schema"
)
// global instance of our database connection.
var db *sql.DB
// Set sets the default database.
func Set(database *sql.DB) {
// set the global database
db = database
// load the database schema. If this is
// a new database all the tables and
// indexes will be created.
if err := schema.Load(db); err != nil {
log.Fatal(err)
}
}