mbryzek / schema-evolution-manager

Schema Evolution Manager makes it very simple for engineers to contribute schema changes to a postgresql database, managing the schema evolutions as proper source code. Schema changes are deployed as gzipped tarballs named with the corresponding git tag.
Apache License 2.0
268 stars 47 forks source link

Extra semicolon in latest version #73

Closed muttonhead closed 4 months ago

muttonhead commented 4 months ago

Hi - This commit that created a new version just now seems to have an extra semicolon here

new.updated_at = now();;

This is giving a syntax error at least on PostgreSQL 13 that we are using

ERROR:  syntax error at or near ";"
LINE 6:     new.updated_at = now();;
                                   ^

Thanks

mbryzek commented 4 months ago

@muttonhead Thank you - Fixed in https://github.com/mbryzek/schema-evolution-manager/pull/74 (releasing now)

muttonhead commented 4 months ago

Awesome, thanks for the quick fix!