Advertisement
Guest User

Untitled

a guest
Apr 20th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.81 KB | None | 0 0
  1. #
  2. # Copyright 2010-2015 Axel Fontaine
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16.  
  17. # Jdbc url to use to connect to the database
  18. # Examples
  19. # --------
  20. # Most drivers are included out of the box.
  21. # * = driver must be downloaded and installed in /drivers manually
  22. # DB2* : jdbc:db2://<host>:<port>/<database>
  23. # Derby : jdbc:derby:<subsubprotocol:><databaseName><;attribute=value>
  24. # H2 : jdbc:h2:<file>
  25. # Hsql : jdbc:hsqldb:file:<file>
  26. # Google Cloud SQL* : jdbc:google:mysql://<project-id>:<instance-name>/<database>
  27. # MariaDB : jdbc:mariadb://<host>:<port>/<database>?<key1>=<value1>&<key2>=<value2>...
  28. # MySQL : jdbc:mysql://<host>:<port>/<database>?<key1>=<value1>&<key2>=<value2>...
  29. # Oracle* : jdbc:oracle:thin:@//<host>:<port>/<service>
  30. # Phoenix* : jdbc:phoenix:<host>
  31. # PostgreSQL : jdbc:postgresql://<host>:<port>/<database>?<key1>=<value1>&<key2>=<value2>...
  32. # Redshift : jdbc:postgresql://<host>:<port>/<database>?<key1>=<value1>&<key2>=<value2>...
  33. # SAP HANA* : jdbc:sap://<host>:<port>/<database>
  34. # solidDB* : jdbc:solid://<host>:<port>?<key1>=<value1>&<key2>=<value2>...
  35. # SQL Azure* : jdbc:sqlserver://<servername>.database.windows.net;databaseName=<database>
  36. # SQL Server : jdbc:jtds:sqlserver://<host>:<port>/<database>
  37. # SQLite : jdbc:sqlite:<database>
  38. # Sybase ASE : jdbc:jtds:sybase://<host>:<port>/<database>
  39. # Vertica* : jdbc:vertica://<host>:<port>/<database>
  40. flyway.url=jdbc:mariadb://localhost/theGameDataBase
  41.  
  42. # Fully qualified classname of the jdbc driver (autodetected by default based on flyway.url)
  43. # flyway.driver=
  44.  
  45. # User to use to connect to the database. Flyway will prompt you to enter it if not specified.
  46. flyway.user=root
  47.  
  48. # Password to use to connect to the database. Flyway will prompt you to enter it if not specified.
  49. flyway.password=start
  50.  
  51. # Comma-separated list of schemas managed by Flyway. These schema names are case-sensitive.
  52. # (default: The default schema for the datasource connection)
  53. # Consequences:
  54. # - The first schema in the list will be automatically set as the default one during the migration.
  55. # - The first schema in the list will also be the one containing the metadata table.
  56. # - The schemas will be cleaned in the order of this list.
  57. # flyway.schemas=
  58.  
  59. # Name of Flyway's metadata table (default: schema_version)
  60. # By default (single-schema mode) the metadata table is placed in the default schema for the connection provided by the datasource.
  61. # When the flyway.schemas property is set (multi-schema mode), the metadata table is placed in the first schema of the list.
  62. # flyway.table=
  63.  
  64. # Comma-separated list of locations to scan recursively for migrations. (default: filesystem:<<INSTALL-DIR>>/sql)
  65. # The location type is determined by its prefix.
  66. # Unprefixed locations or locations starting with classpath: point to a package on the classpath and may contain both sql and java-based migrations.
  67. # Locations starting with filesystem: point to a directory on the filesystem and may only contain sql migrations.
  68. # flyway.locations=core/evolutions/
  69.  
  70. # Comma-separated list of fully qualified class names of custom MigrationResolver to use for resolving migrations.
  71. # flyway.resolvers=
  72.  
  73. # If set to true, default built-in resolvers (jdbc, spring-jdbc and sql) are skipped and only custom resolvers as
  74. # defined by 'flyway.resolvers' are used. (default: false)
  75. # flyway.skipDefaultResolvers=
  76.  
  77. # Comma-separated list of directories containing JDBC drivers and Java-based migrations. (default: <INSTALL-DIR>/jars)
  78. # flyway.jarDirs=
  79.  
  80. # File name prefix for sql migrations (default: V )
  81. # Sql migrations have the following file name structure: prefixVERSIONseparatorDESCRIPTIONsuffix ,
  82. # which using the defaults translates to V1_1__My_description.sql
  83. # flyway.sqlMigrationPrefix=
  84.  
  85. # File name prefix for repeatable sql migrations (default: R )
  86. # Repeatable sql migrations have the following file name structure: prefixSeparatorDESCRIPTIONsuffix ,
  87. # which using the defaults translates to R__My_description.sql
  88. # flyway.repeatableSqlMigrationPrefix=
  89.  
  90. # File name separator for Sql migrations (default: __)
  91. # Sql migrations have the following file name structure: prefixVERSIONseparatorDESCRIPTIONsuffix ,
  92. # which using the defaults translates to V1_1__My_description.sql
  93. # flyway.sqlMigrationSeparator=
  94.  
  95. # File name suffix for Sql migrations (default: .sql)
  96. # Sql migrations have the following file name structure: prefixVERSIONseparatorDESCRIPTIONsuffix ,
  97. # which using the defaults translates to V1_1__My_description.sql
  98. # flyway.sqlMigrationSuffix=
  99.  
  100. # Encoding of Sql migrations (default: UTF-8)
  101. # flyway.encoding=
  102.  
  103. # Whether placeholders should be replaced. (default: true)
  104. # flyway.placeholderReplacement=
  105.  
  106. # Placeholders to replace in Sql migrations
  107. # flyway.placeholders.user=
  108. # flyway.placeholders.my_other_placeholder=
  109.  
  110. # Prefix of every placeholder (default: ${ )
  111. # flyway.placeholderPrefix=
  112.  
  113. # Suffix of every placeholder (default: } )
  114. # flyway.placeholderSuffix=
  115.  
  116. # Target version up to which Flyway should consider migrations.
  117. # The special value 'current' designates the current version of the schema. (default: <<latest version>>)
  118. # flyway.target=
  119.  
  120. # Whether to automatically call validate or not when running migrate. (default: true)
  121. # flyway.validateOnMigrate=
  122.  
  123. # Whether to automatically call clean or not when a validation error occurs. (default: false)
  124. # This is exclusively intended as a convenience for development. Even tough we
  125. # strongly recommend not to change migration scripts once they have been checked into SCM and run, this provides a
  126. # way of dealing with this case in a smooth manner. The database will be wiped clean automatically, ensuring that
  127. # the next migration will bring you back to the state checked into SCM.
  128. # Warning ! Do not enable in production !
  129. # flyway.cleanOnValidationError=
  130.  
  131. # Whether to disabled clean. (default: false)
  132. # This is especially useful for production environments where running clean can be quite a career limiting move.
  133. # flyway.cleanDisabled=
  134.  
  135. # The version to tag an existing schema with when executing baseline. (default: 1)
  136. # flyway.baselineVersion=
  137.  
  138. # The description to tag an existing schema with when executing baseline. (default: << Flyway Baseline >>)
  139. # flyway.baselineDescription=
  140.  
  141. # Whether to automatically call baseline when migrate is executed against a non-empty schema with no metadata table.
  142. # This schema will then be initialized with the baselineVersion before executing the migrations.
  143. # Only migrations above baselineVersion will then be applied.
  144. # This is useful for initial Flyway production deployments on projects with an existing DB.
  145. # Be careful when enabling this as it removes the safety net that ensures
  146. # Flyway does not migrate the wrong database in case of a configuration mistake! (default: false)
  147. # flyway.baselineOnMigrate=
  148.  
  149. # Allows migrations to be run "out of order" (default: false).
  150. # If you already have versions 1 and 3 applied, and now a version 2 is found,
  151. # it will be applied too instead of being ignored.
  152. # flyway.outOfOrder=
  153.  
  154. # This allows you to tie in custom code and logic to the Flyway lifecycle notifications (default: empty).
  155. # Set this to a comma-separated list of fully qualified FlywayCallback class name implementations
  156. # flyway.callbacks=
  157.  
  158. # If set to true, default built-in callbacks (sql) are skipped and only custom callback as
  159. # defined by 'flyway.callbacks' are used. (default: false)
  160. # flyway.skipDefaultCallbacks=
  161.  
  162. # Ignore future migrations when reading the metadata table. These are migrations that were performed by a
  163. # newer deployment of the application that are not yet available in this version. For example: we have migrations
  164. # available on the classpath up to version 3.0. The metadata table indicates that a migration to version 4.0
  165. # (unknown to us) has already been applied. Instead of bombing out (fail fast) with an exception, a
  166. # warning is logged and Flyway continues normally. This is useful for situations where one must be able to redeploy
  167. # an older version of the application after the database has been migrated by a newer one.
  168. # true to continue normally and log a warning, false to fail fast with an exception. (default: true)
  169. # flyway.ignoreFutureMigrations=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement