diff options
Diffstat (limited to 'db/migrate/20200901183004_backfill_user_username.rb')
-rw-r--r-- | db/migrate/20200901183004_backfill_user_username.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20200901183004_backfill_user_username.rb b/db/migrate/20200901183004_backfill_user_username.rb new file mode 100644 index 000000000..e206aaae8 --- /dev/null +++ b/db/migrate/20200901183004_backfill_user_username.rb @@ -0,0 +1,11 @@ +class BackfillUserUsername < ActiveRecord::Migration[5.2] + def up + User.find_each do |user| + user.update!(username: user.account.username) + end + end + + def down + nil + end +end |