-
Notifications
You must be signed in to change notification settings - Fork 5
/
options.go
66 lines (59 loc) · 1.8 KB
/
options.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package schema
import "context"
// Option supports option chaining when creating a Migrator.
// An Option is a function which takes a Migrator and
// returns a Migrator with an Option modified.
type Option func(m Migrator) Migrator
// WithDialect builds an Option which will set the supplied
// dialect on a Migrator. Usage: NewMigrator(WithDialect(MySQL))
//
func WithDialect(dialect Dialect) Option {
return func(m Migrator) Migrator {
m.Dialect = dialect
return m
}
}
// WithTableName is an option which customizes the name of the schema_migrations
// tracking table. It can be called with either 1 or 2 string arguments. If
// called with 2 arguments, the first argument is assumed to be a schema
// qualifier (for example, WithTableName("public", "schema_migrations") would
// assign the table named "schema_migrations" in the the default "public"
// schema for Postgres)
//
func WithTableName(names ...string) Option {
return func(m Migrator) Migrator {
switch len(names) {
case 0:
// No-op if no customization was provided
case 1:
m.TableName = names[0]
default:
m.SchemaName = names[0]
m.TableName = names[1]
}
return m
}
}
// WithContext is an Option which sets the Migrator to run within the provided
// Context
func WithContext(ctx context.Context) Option {
return func(m Migrator) Migrator {
m.ctx = ctx
return m
}
}
// Logger is the interface for logging operations of the logger.
// By default the migrator operates silently. Providing a Logger
// enables output of the migrator's operations.
type Logger interface {
Print(...interface{})
}
// WithLogger builds an Option which will set the supplied Logger
// on a Migrator. Usage: NewMigrator(WithLogger(logrus.New()))
//
func WithLogger(logger Logger) Option {
return func(m Migrator) Migrator {
m.Logger = logger
return m
}
}