DEV: ignore the given_daily_likes table when moving timestamps on Try (#13971)

This will fix the try-reset build that failed today. Probably this going to happen again with other tables that have constraints on date columns. I'm going to modify the script to make it work without ignoring such tables. After that, the only table we're going to need to ignore will be the 2FA table.

Before I fixed that, don't hesitate to tag me if the try-reset build fail again.
This commit is contained in:
Andrei Prigorshnev 2021-08-06 18:27:23 +04:00 committed by GitHub
parent 044de6d670
commit b66674fec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ def is_date?(string)
end
def create_updater
ignore_tables = %w[application_requests user_second_factors user_visits]
ignore_tables = %w[application_requests given_daily_likes user_second_factors user_visits]
TimestampsUpdater.new "public", ignore_tables
end