Possible to backup databases, views, functions into gitlab?

Hey everyone. I use a Postgres 13 database, and am still pretty new to it. Was wondering if Liquibase can be used to dump tables, views, and functions, to commit (back up) into a gitlab repo?

Hi @refriedjello ,

Yes, you can acheive this using generateChangelog cammand. You can include a list of diff types in a changelog file expressed as a comma-separated list (without spaces) from: catalog,tables,functions,views,columns,indexes,foreignkeys,primarykeys,
uniqueconstraints,data,storedprocedure,triggers,sequences. Take a look at this documentation: generateChangeLog command | Liquibase Docs