package database import ( "context" ) // InitSchema initializes the database schema using migrations // This is a convenience function that runs migrations func InitSchema(conns *Connections) error { ctx := context.Background() return RunMigrations(ctx, conns) }