DEV Community

Discussion on: Why not to create db asset from code

Collapse
 
poovamraj profile image
Poovamraj T T

This is a good point. It comes under seperation of concern and unwanted coupling between DB and Application

Flyway and Liquibase can be used for this purpose.

In Liquibase you can generate your SQL Script from comparing the diff from your code itself.