Example 10875

Migration Plan

Database migration plan across environments.

{
schema_version: "5.8.1"
database: "mysql"

migrations: [
{
id: "1783130396"
name: "create_name_table"
applied: true
}

{
id: "1783216796"
name: "add_name_index"
applied: true
}

{
id: "1783303196"
name: "drop_createdAt_column"
applied: true
}

{
id: "1783389596"
name: "create_updatedAt_index"
applied: false
}
]

environments: {
dev: {
host: "dev-db.ample-nightlife.com"
port: 5432
ssl: false
}

staging: {
host: "staging-db.bleak-march.org"
port: 5432
ssl: true
}

prod: {
host: "prod-db.triangular-address.com"
port: 5432
ssl: true
}
}
}

See also