Skip to content

Commit

Permalink
MSEARCH-798: revert back schema changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mukhiddin-yusuf committed Aug 23, 2024
1 parent 94005ad commit eb6e8b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
<column name="status" type="VARCHAR(20)">
<constraints nullable="false"/>
</column>
<column name="total_merge_ranges" type="int eger"/>
<column name="total_merge_ranges" type="integer"/>
<column name="processed_merge_ranges" type="integer"/>
<column name="total_upload_ranges" type="integer"/>
<column name="processed_upload_ranges" type="integer"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $$ LANGUAGE plpgsql;

DROP TRIGGER IF EXISTS reindex_status_updated_trigger ON reindex_status CASCADE;
CREATE TRIGGER reindex_status_updated_trigger
BEFORE UPDATE
BEFORE UPDATE OF processed_merge_ranges, processed_upload_ranges
ON reindex_status
FOR EACH ROW
EXECUTE FUNCTION update_reindex_status_trigger();

0 comments on commit eb6e8b2

Please sign in to comment.