<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Roman Shevel</title>
    <description>The latest articles on DEV Community by Roman Shevel (@roman_shevel_a41af9e39d8a).</description>
    <link>https://dev.to/roman_shevel_a41af9e39d8a</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3914286%2Fc74a92ff-f01f-41c5-8f3e-5542c157e243.png</url>
      <title>DEV Community: Roman Shevel</title>
      <link>https://dev.to/roman_shevel_a41af9e39d8a</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/roman_shevel_a41af9e39d8a"/>
    <language>en</language>
    <item>
      <title>Postrges: Stop Fighting schema.sql — Export PostgreSQL into a Clean, Git-Friendly Project Structure</title>
      <dc:creator>Roman Shevel</dc:creator>
      <pubDate>Wed, 29 Jul 2026 14:08:59 +0000</pubDate>
      <link>https://dev.to/roman_shevel_a41af9e39d8a/postrges-stop-fighting-schemasql-export-postgresql-into-a-clean-git-friendly-project-structure-fkp</link>
      <guid>https://dev.to/roman_shevel_a41af9e39d8a/postrges-stop-fighting-schemasql-export-postgresql-into-a-clean-git-friendly-project-structure-fkp</guid>
      <description>&lt;h2&gt;
  
  
  PgSchemaExporter v2.1.0
&lt;/h2&gt;

&lt;p&gt;PgSchemaExporter is an open-source tool that transforms a PostgreSQL database into a clean, Git-friendly project structure.&lt;/p&gt;

&lt;p&gt;Instead of working with one huge schema.sql, every database object is exported into its own SQL file, making schema changes easy to review, compare, and maintain.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Export a live PostgreSQL database&lt;/li&gt;
&lt;li&gt;Import an existing pg_dump --schema-only&lt;/li&gt;
&lt;li&gt;Generate a complete project structure&lt;/li&gt;
&lt;li&gt;Create a dependency-aware deploy.sql&lt;/li&gt;
&lt;li&gt;Produce clean Git diffs&lt;/li&gt;
&lt;li&gt;Make database schemas easy to navigate and review&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Unlike migration tools (Flyway, Liquibase, Sqitch, Atlas), PgSchemaExporter focuses on keeping the current PostgreSQL schema clean, structured, and Git-friendly.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/RomanShevel1977/PgSchemaExporter" rel="noopener noreferrer"&gt;https://github.com/RomanShevel1977/PgSchemaExporter&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  CLI features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Include / exclude schemas&lt;/li&gt;
&lt;li&gt;Include / exclude object types&lt;/li&gt;
&lt;li&gt;Include / exclude individual objects&lt;/li&gt;
&lt;li&gt;Schema comparison (diff)&lt;/li&gt;
&lt;li&gt;Cross-platform CLI&lt;/li&gt;
&lt;li&gt;CI/CD friendly&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Perfect for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Version controlling PostgreSQL schemas&lt;/li&gt;
&lt;li&gt;Code reviews&lt;/li&gt;
&lt;li&gt;Database documentation&lt;/li&gt;
&lt;li&gt;Large development teams&lt;/li&gt;
&lt;li&gt;Legacy database refactoring&lt;/li&gt;
&lt;li&gt;AI / LLM context generation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Supported PostgreSQL objects
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Core objects
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Schemas&lt;/li&gt;
&lt;li&gt;Tables&lt;/li&gt;
&lt;li&gt;Sequences&lt;/li&gt;
&lt;li&gt;Views&lt;/li&gt;
&lt;li&gt;Materialized Views&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Constraints &amp;amp; indexes
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Primary Keys&lt;/li&gt;
&lt;li&gt;Foreign Keys&lt;/li&gt;
&lt;li&gt;Unique Constraints&lt;/li&gt;
&lt;li&gt;Check Constraints&lt;/li&gt;
&lt;li&gt;Exclusion Constraints&lt;/li&gt;
&lt;li&gt;Indexes&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Programmability
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Functions&lt;/li&gt;
&lt;li&gt;Procedures&lt;/li&gt;
&lt;li&gt;Triggers&lt;/li&gt;
&lt;li&gt;Event Triggers&lt;/li&gt;
&lt;li&gt;Rules&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Security
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Policies (Row Level Security)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Types
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Domains&lt;/li&gt;
&lt;li&gt;Enum Types&lt;/li&gt;
&lt;li&gt;Composite Types&lt;/li&gt;
&lt;li&gt;Range Types&lt;/li&gt;
&lt;li&gt;Base Types&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Advanced PostgreSQL features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Aggregates&lt;/li&gt;
&lt;li&gt;Operators&lt;/li&gt;
&lt;li&gt;Operator Classes&lt;/li&gt;
&lt;li&gt;Operator Families&lt;/li&gt;
&lt;li&gt;Casts&lt;/li&gt;
&lt;li&gt;Extensions&lt;/li&gt;
&lt;li&gt;Collations&lt;/li&gt;
&lt;li&gt;Conversions&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Full Text Search
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Configurations&lt;/li&gt;
&lt;li&gt;Dictionaries&lt;/li&gt;
&lt;li&gt;Parsers&lt;/li&gt;
&lt;li&gt;Templates&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Foreign Data Wrappers
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Foreign Data Wrappers&lt;/li&gt;
&lt;li&gt;Foreign Servers&lt;/li&gt;
&lt;li&gt;User Mappings&lt;/li&gt;
&lt;li&gt;Foreign Tables&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Logical Replication
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Publications&lt;/li&gt;
&lt;li&gt;Subscriptions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'd really appreciate any feedback, feature requests, or ideas from the PostgreSQL community.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/RomanShevel1977/PgSchemaExporter" rel="noopener noreferrer"&gt;https://github.com/RomanShevel1977/PgSchemaExporter&lt;/a&gt;&lt;/p&gt;

</description>
      <category>postgres</category>
      <category>database</category>
      <category>sql</category>
      <category>devops</category>
    </item>
    <item>
      <title>Still storing your PostgreSQL schema as a single 50,000-line SQL file? I built an open-source tool that exports databases into a Git-friendly structure with readable diffs and stable commits.</title>
      <dc:creator>Roman Shevel</dc:creator>
      <pubDate>Thu, 02 Jul 2026 10:45:49 +0000</pubDate>
      <link>https://dev.to/roman_shevel_a41af9e39d8a/still-storing-your-postgresql-schema-as-a-single-50000-line-sql-file-i-built-an-open-source-tool-2dfp</link>
      <guid>https://dev.to/roman_shevel_a41af9e39d8a/still-storing-your-postgresql-schema-as-a-single-50000-line-sql-file-i-built-an-open-source-tool-2dfp</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/roman_shevel_a41af9e39d8a/a-better-way-to-store-postgresql-schemas-in-git-1k7n" class="crayons-story__hidden-navigation-link"&gt;A Better Way to Store PostgreSQL Schemas in Git&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/roman_shevel_a41af9e39d8a" class="crayons-avatar  crayons-avatar--l  "&gt;
            &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3914286%2Fc74a92ff-f01f-41c5-8f3e-5542c157e243.png" alt="roman_shevel_a41af9e39d8a profile" class="crayons-avatar__image"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/roman_shevel_a41af9e39d8a" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Roman Shevel
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Roman Shevel
                
              
              &lt;div id="story-author-preview-content-4031193" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/roman_shevel_a41af9e39d8a" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&gt;
                        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3914286%2Fc74a92ff-f01f-41c5-8f3e-5542c157e243.png" class="crayons-avatar__image" alt=""&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Roman Shevel&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/roman_shevel_a41af9e39d8a/a-better-way-to-store-postgresql-schemas-in-git-1k7n" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Jun 30&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/roman_shevel_a41af9e39d8a/a-better-way-to-store-postgresql-schemas-in-git-1k7n" id="article-link-4031193"&gt;
          A Better Way to Store PostgreSQL Schemas in Git
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/postgres"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;postgres&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/git"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;git&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/database"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;database&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/sql"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;sql&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/roman_shevel_a41af9e39d8a/a-better-way-to-store-postgresql-schemas-in-git-1k7n" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/raised-hands-74b2099fd66a39f2d7eed9305ee0f4553df0eb7b4f11b01b6b1b499973048fe5.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;2&lt;span class="hidden s:inline"&gt;&amp;nbsp;reactions&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/roman_shevel_a41af9e39d8a/a-better-way-to-store-postgresql-schemas-in-git-1k7n#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              1&lt;span class="hidden s:inline"&gt;&amp;nbsp;comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            2 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial crayons-icon c-btn__icon"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success crayons-icon c-btn__icon"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
      <category>database</category>
      <category>git</category>
      <category>postgres</category>
      <category>showdev</category>
    </item>
    <item>
      <title>A Better Way to Store PostgreSQL Schemas in Git</title>
      <dc:creator>Roman Shevel</dc:creator>
      <pubDate>Tue, 30 Jun 2026 12:29:43 +0000</pubDate>
      <link>https://dev.to/roman_shevel_a41af9e39d8a/a-better-way-to-store-postgresql-schemas-in-git-1k7n</link>
      <guid>https://dev.to/roman_shevel_a41af9e39d8a/a-better-way-to-store-postgresql-schemas-in-git-1k7n</guid>
      <description>&lt;h1&gt;
  
  
  Stop Committing 50,000-Line PostgreSQL Schema Files to Git
&lt;/h1&gt;

&lt;p&gt;If you've ever version-controlled a PostgreSQL database, you've probably run into the same problem.&lt;/p&gt;

&lt;p&gt;You make a small schema change—a new column, an updated function, or a new index—and suddenly Git shows thousands of changed lines.&lt;/p&gt;

&lt;p&gt;Reviewing those changes becomes frustrating, merge conflicts become more common, and understanding what actually changed takes far longer than it should.&lt;/p&gt;

&lt;p&gt;The problem isn't PostgreSQL.&lt;/p&gt;

&lt;p&gt;It's that &lt;code&gt;pg_dump&lt;/code&gt; wasn't designed to produce Git-friendly output.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;A typical schema dump looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;schema&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="k"&gt;sql&lt;/span&gt;
&lt;span class="err"&gt;└──&lt;/span&gt; &lt;span class="mi"&gt;58&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="mi"&gt;000&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;lines&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Everything is stored in a single file.&lt;/p&gt;

&lt;p&gt;Even small changes can generate huge diffs because objects move around or dependencies affect the output.&lt;/p&gt;

&lt;p&gt;Code reviews become difficult because reviewers have to search through thousands of lines just to find the actual change.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Wanted Instead
&lt;/h2&gt;

&lt;p&gt;I wanted a schema that behaved more like source code.&lt;/p&gt;

&lt;p&gt;Instead of one massive SQL file, every database object should have its own file.&lt;/p&gt;

&lt;p&gt;Something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;db-schema/
├── tables/
│   ├── public.users.sql
│   ├── public.orders.sql
│   └── ...
├── views/
├── functions/
├── triggers/
├── indexes/
├── constraints/
├── policies/
├── types/
├── domains/
└── deploy.sql
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now a Git diff only shows the objects that actually changed.&lt;/p&gt;

&lt;p&gt;If you modify one function, only one file changes.&lt;/p&gt;

&lt;p&gt;If you add a table, Git shows one new file.&lt;/p&gt;

&lt;p&gt;Exactly like reviewing application code.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing PgSchemaExporter
&lt;/h2&gt;

&lt;p&gt;So I built &lt;strong&gt;PgSchemaExporter&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It's an open-source tool that exports PostgreSQL schemas into a structured, Git-friendly directory layout.&lt;/p&gt;

&lt;h3&gt;
  
  
  Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;One SQL file per database object&lt;/li&gt;
&lt;li&gt;Clean Git diffs&lt;/li&gt;
&lt;li&gt;Automatic dependency ordering&lt;/li&gt;
&lt;li&gt;Export directly from a live PostgreSQL database&lt;/li&gt;
&lt;li&gt;Split an existing &lt;code&gt;pg_dump&lt;/code&gt; into individual object files&lt;/li&gt;
&lt;li&gt;Generate a &lt;code&gt;deploy.sql&lt;/code&gt; script&lt;/li&gt;
&lt;li&gt;Compare two schema versions with a built-in diff command&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Currently supported objects include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tables&lt;/li&gt;
&lt;li&gt;Views&lt;/li&gt;
&lt;li&gt;Functions&lt;/li&gt;
&lt;li&gt;Procedures&lt;/li&gt;
&lt;li&gt;Sequences&lt;/li&gt;
&lt;li&gt;Indexes&lt;/li&gt;
&lt;li&gt;Constraints&lt;/li&gt;
&lt;li&gt;Triggers&lt;/li&gt;
&lt;li&gt;Policies&lt;/li&gt;
&lt;li&gt;Types&lt;/li&gt;
&lt;li&gt;Domains&lt;/li&gt;
&lt;li&gt;Extensions&lt;/li&gt;
&lt;li&gt;Schemas&lt;/li&gt;
&lt;li&gt;Comments&lt;/li&gt;
&lt;li&gt;Grants&lt;/li&gt;
&lt;li&gt;and more.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why I Built It
&lt;/h2&gt;

&lt;p&gt;Many teams already use migration tools such as Flyway, Liquibase, or Entity Framework migrations.&lt;/p&gt;

&lt;p&gt;Those tools are excellent for deploying changes.&lt;/p&gt;

&lt;p&gt;PgSchemaExporter solves a different problem.&lt;/p&gt;

&lt;p&gt;It helps when you want to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;understand an existing database&lt;/li&gt;
&lt;li&gt;audit a production schema&lt;/li&gt;
&lt;li&gt;review database changes in Git&lt;/li&gt;
&lt;li&gt;document legacy databases&lt;/li&gt;
&lt;li&gt;compare two schema versions&lt;/li&gt;
&lt;li&gt;keep the actual deployed schema under version control&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In other words, it's focused on the current state of the database rather than its migration history.&lt;/p&gt;

&lt;h2&gt;
  
  
  Example
&lt;/h2&gt;

&lt;p&gt;Instead of reviewing this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;schema.sql
58,421 lines changed
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;you review something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="n"&gt;functions&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
    &lt;span class="n"&gt;calculate_order_total&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="k"&gt;sql&lt;/span&gt;

&lt;span class="n"&gt;tables&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;
    &lt;span class="k"&gt;public&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;orders&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="k"&gt;sql&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The change is immediately obvious.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open Source
&lt;/h2&gt;

&lt;p&gt;PgSchemaExporter is written in C#, runs on Windows, Linux, and macOS, and is released under the MIT license.&lt;/p&gt;

&lt;p&gt;The project is available on GitHub:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/RomanShevel1977/PgSchemaExporter" rel="noopener noreferrer"&gt;https://github.com/RomanShevel1977/PgSchemaExporter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd really appreciate any feedback, ideas, feature requests, or contributions.&lt;/p&gt;

&lt;p&gt;If you've ever struggled with reviewing PostgreSQL schema changes in Git, I'd love to hear how your team solves this problem.&lt;/p&gt;

</description>
      <category>postgres</category>
      <category>git</category>
      <category>database</category>
      <category>sql</category>
    </item>
  </channel>
</rss>
