DEV: ignore the 2FA table when moving timestamps (#13793)

or 2FA will be broken after moving. We use this script for moving timestamps when restoring Try.
This commit is contained in:
Andrei Prigorshnev 2021-07-20 15:49:20 +04:00 committed by GitHub
parent 1a8c949900
commit efc8d5f134
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_visits]
ignore_tables = %w[application_requests user_second_factors user_visits]
TimestampsUpdater.new "public", ignore_tables
end