about summary refs log tree commit diff
path: root/db/migrate
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-09-01 13:41:43 -0500
committerFire Demon <firedemon@creature.cafe>2020-09-01 13:41:43 -0500
commitf52a54685a4482f4f16e411847b9bfe71690cf69 (patch)
tree7f1c122b6578befda2d6da9d232e9323e0b6a998 /db/migrate
parent97a98796b4b01d9ce4c2147cacf54960a71010f2 (diff)
[Database] Backfill users.username column
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20200901183004_backfill_user_username.rb11
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