-
I recently stumbled upon entgo and atlas as a migration tool—apologies if this is an obvious question. I'm aware they support versioned migrations, but is there any way to view or configure tracking schema changes, similar to Liquibase change logs? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @risv1 👋 Atlas uses SQL files for versioned migrations. They are generated automatically from your Ent schema (or any other ORM), using the Does that answer your question, or is there something specific you're looking for? Also, if you're looking for a web-based changelog, Atlas Registry provides that: you can view, diff, and track all schema changes in a visual UI. See this example: https://gh.atlasgo.cloud/dirs/4294967383 ![]() |
Beta Was this translation helpful? Give feedback.
Hey @risv1 👋
Atlas uses SQL files for versioned migrations. They are generated automatically from your Ent schema (or any other ORM), using the
atlas migrate diff
command, and applied to the database withatlas migrate apply
. These files act as your "changelog".Does that answer your question, or is there something specific you're looking for?
Also, if you're looking for a web-based changelog, Atlas Registry provides that: you can view, diff, and track all schema changes in a visual UI. See this example: https://gh.atlasgo.cloud/dirs/4294967383