|
|
|
|
|
by surjection
988 days ago
|
|
Hi, one of the authors of pgroll here. Migrations are JSON format as opposed to pure SQL for at least a couple of reasons: 1. The need to define up and down SQL scripts that are run to backfill a new column with values from an old column (eg when adding a constraint). 2. Each of the supported operation types is careful to sequence operations in such a way to avoid taking long-lived locks (eg, initially creating constraints as NOT VALID). A pure SQL solution would push this kind of responsibility onto migration authors. A state-based approach to infer migrations based on schema diffs is out of scope for pgroll for now but could be something to consider in future. |
|