func (s *WalkthroughService) SchemaInstalled(db ab.DB) bool {
	found := ab.TableExists(db, "walkthrough")

	// HOOK: afterWalkthroughSchemaInstalled()

	return found
}
Exemplo n.º 2
0
func (s *LogService) SchemaInstalled(db ab.DB) bool {
	found := ab.TableExists(db, "log")

	// HOOK: afterLogSchemaInstalled()

	return found
}
Exemplo n.º 3
0
func (s *UserService) SchemaInstalled(db ab.DB) bool {
	found := ab.TableExists(db, "user")

	// HOOK: afterUserSchemaInstalled()

	return found
}