zoukankan      html  css  js  c++  java
  • Existing database setup

    These are the steps to follow to successfully integrate Flyway in a project with an existing database.

    Take a DDL and reference data extract from production

    First start by taking a snapshot of your most important database: production. This will be the starting point for migrations.

    Generate a sql script that includes the entire DDL (including indexes, triggers, procedures, ...) of the production database. To do this you will need to add insert statements for all the reference data present in the database.

    需要一次性导出现有数据库中的所有表以及存储过程

    This script will form your base migration. Save it on the classpath in the directory you configured with baseDir. Give it a relevant version number and description such as V1__Base_version.sql.

    Clean all databases containing data you don't mind losing

    Now comes the point where we have to make sure that the migrations meant for production will work everywhere.

    For all databases with unimportant data you don't mind losing, perform

    > flyway clean

    to completely remove their contents.

    Align the remaining databases with production

    Check all remaining databases. You must make sure that their structure (DDL) and reference data matches production exactly. This step is important, as all scripts destined for production will be applied here first. For the scripts to succeed, the objects they migrate must be identical to what is present in production.

    Give these databases a baseline version

    Now comes the time to baseline the databases that contain data (including production) with a baseline version. Use the same version and description you used for the production extract script created above.

    You can accomplish it like this:

    > flyway baseline

    You must perform this step for each database that hasn't been cleaned.

    Done !

    Congratulations ! You are now ready.

    When you execute

    > flyway migrate

    the empty databases will be migrated to the state of production and the others will be left as is.
    As soon as you add a new migration, it will be applied identically to all databases.

  • 相关阅读:
    [BZOJ3413]匹配
    [BZOJ3879]SvT
    [BZOJ1339] [Baltic2008] Mafia / 黑手党
    [BZOJ1834] [ZJOI2010] network 网络扩容
    [BZOJ1449] [JSOI2009]球队收益 / [BZOJ2895] 球队预算
    [BZOJ2597] [WC2007]剪刀石头布
    [BZOJ1283]序列
    [BZOJ2127]happiness
    Java公开课-04.异常
    Java公开课-03.内部类
  • 原文地址:https://www.cnblogs.com/chucklu/p/12743906.html
Copyright © 2011-2022 走看看