我在这样的文件夹中有脚本:
D:/dev/DatabaseSetup/oracle/010__script.sql
D:/dev/DatabaseSetup/oracle/020__script.sql
D:/dev/DatabaseSetup/oracle/030__script.sql
D:/dev/DatabaseSetup/oracle/040__script.sql
D:/dev/DatabaseSetup/oracle/050__script.sql
我想将所有脚本保存在同一个文件夹中,但在迁移中忽略其中一些脚本。确切地说,我想只包括这个脚本
<locations>
<location>filesystem:oracle/020__script.sql</location>
<location>filesystem:oracle/030__script.sql</location>
<location>filesystem:oracle/040__script.sql</location>
</locations>
pom.xml
的路径为D:/dev/DatabaseSetup/oracle/pom.xml
。
我读了这个question ,但发现我不能指定单个sql脚本进行迁移(在接受的答案中,它使用的是指向java包的classpath)。
甚至可能吗?我收到了以下错误:
[ERROR] Failed to execute goal org.flywaydb:flyway-maven-plugin:3.2.1:migrate (default-cli) on proje
ct DatabaseSetup: org.flywaydb.core.api.FlywayException: Unable to scan for SQL migrations in lo
cation: filesystem:D:/dev/DatabaseSetup/oracle/020__script.sql: Invalid filesystem path:
D:/dev/DatabaseSetup/oracle/020__script.sql -> [Help 1]
当我将<locations>
更改为
<locations>
<location>filesystem:oracle</location>
</locations>
flyway执行所有脚本。
答案 0 :(得分:1)
不,这是不可能的。你可以做的是创建两个不同的文件夹,并且在你执行da命令运行Flyway的那一刻,你传递一个参数来说巫文文件夹Flyway应该阅读。
答案 1 :(得分:0)
我通过为我想要执行的脚本定义文件名模式解决了我的问题,然后将它们复制到flyway将寻找迁移的特定文件夹中。
例如,如果文件名模式为**__pattern**.sql
,则配置为:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>copy-flyway-scripts</id>
<phase>compile</phase>
<configuration>
<target name="copy-flyway-scripts">
<echo>Copying SQL scripts</echo>
<copy todir="./target/flyway">
<fileset dir="./src/main/resources/oracle" >
<include name="**__pattern**.sql"/>
</fileset>
</copy>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>3.0</version>
<configuration>
<driver>${db-driver-name}</driver>
<url>${db-url}</url>
<user>${db-user-name}</user>
<password>${db-user-password}</password>
<locations>
<location>filesystem:./target/flyway</location>
</locations>
<schemas>
<schema>SCHEMA</schema>
</schemas>
</configuration>
</plugin>