-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rake task to remove invalid user phone numbers
- Loading branch information
1 parent
1c489b2
commit 49d9312
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
namespace :db do | ||
desc "Remove invalid user phone_numbers" | ||
task remove_invalid_user_phone_numbers: :environment do | ||
User.find_each do |user| | ||
invalid = false | ||
|
||
if user.phone_number && Phonelib.invalid?(user.phone_number) | ||
user.phone_number = nil | ||
invalid = true | ||
end | ||
|
||
if user.company_phone_number && Phonelib.invalid?(user.company_phone_number) | ||
user.company_phone_number = nil | ||
invalid = true | ||
end | ||
|
||
user.save! if invalid | ||
end | ||
end | ||
end |