Esempio n. 1
0
func sCheck(localdb *sqlite.DB) error {
	_, err := localdb.CreateTable("Registration", models.Registration{})
	if err != nil {
		log.Println("create registration table: ", err.Error())
	}
	return err
}