-
Notifications
You must be signed in to change notification settings - Fork 7
/
flyway.toml
48 lines (39 loc) · 1.11 KB
/
flyway.toml
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
databaseType = "PostgreSql"
name = "Postgres-AutoPilot"
id = "d9495d20-78ab-41d3-9f59-0da558541f7b"
[flywayDesktop]
developmentEnvironment = "development"
shadowEnvironment = "shadow"
schemaModel = "./schema-model"
[flywayDesktop.generate]
undoScripts = true
[redgateCompare]
filterFile = "filter.rgf"
[flyway]
mixed = true
outOfOrder = true
locations = [ "filesystem:migrations" ]
validateMigrationNaming = true
baselineVersion = "001_20230821140817"
baselineOnMigrate = true
[environments.development]
url = "jdbc:postgresql://localhost:5432/widgetdev"
schemas = [ "public" ]
displayName = "Development database"
[environments.shadow]
url = "jdbc:postgresql://localhost:5432/widgetshadow"
schemas = [ "public" ]
displayName = "Shadow database"
provisioner = "clean"
[environments.Test]
url = "jdbc:postgresql://localhost:5432/widgettest"
schemas = [ "public" ]
displayName = "Test"
[environments.Prod]
url = "jdbc:postgresql://localhost:5432/widgetprod"
schemas = [ "public" ]
displayName = "Production"
[environments.Build]
url = "jdbc:postgresql://localhost:5432/widgetbuild"
schemas = [ "public" ]
displayName = "Build"