Skip to content

Commit

Permalink
generated_by_id should be false by default (#7158)
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro authored Dec 17, 2024
1 parent 9fe15d6 commit 1be026c
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@
</changeSet>

<changeSet author="Andrej Romanov" id="UPDATE-GENERATED-BY-SCRIPT-BASED-ON-CREATED-DATE" dbms="postgresql">
<sql>
UPDATE profile_email_domain SET generated_by_script = true WHERE date_created &lt; '2024-10-28';
</sql>
<sql>UPDATE profile_email_domain SET generated_by_script = true WHERE date_created &lt; '2024-10-28';</sql>
</changeSet>

<changeSet author="Angel Montenegro" id="SET-FALSE-TO-NULL" dbms="postgresql">
<sql>UPDATE profile_email_domain SET generated_by_script = false WHERE generated_by_script is null;</sql>
</changeSet>

</databaseChangeLog>

0 comments on commit 1be026c

Please sign in to comment.