summaryrefslogtreecommitdiff
path: root/db/migrate/20130304104740_convert_blocked_to_state.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130304104740_convert_blocked_to_state.rb')
-rw-r--r--db/migrate/20130304104740_convert_blocked_to_state.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20130304104740_convert_blocked_to_state.rb b/db/migrate/20130304104740_convert_blocked_to_state.rb
deleted file mode 100644
index 9afd1093645..00000000000
--- a/db/migrate/20130304104740_convert_blocked_to_state.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# rubocop:disable all
-class ConvertBlockedToState < ActiveRecord::Migration
- def up
- User.transaction do
- User.where(blocked: true).update_all(state: :blocked)
- User.where(blocked: false).update_all(state: :active)
- end
- end
-
- def down
- User.transaction do
- User.where(state: :blocked).update_all(blocked: :true)
- end
- end
-end