about summary refs log tree commit diff
path: root/db/migrate/20171107143624_add_disabled_to_users.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20171107143624_add_disabled_to_users.rb')
-rw-r--r--db/migrate/20171107143624_add_disabled_to_users.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20171107143624_add_disabled_to_users.rb b/db/migrate/20171107143624_add_disabled_to_users.rb
new file mode 100644
index 000000000..a71cac1c6
--- /dev/null
+++ b/db/migrate/20171107143624_add_disabled_to_users.rb
@@ -0,0 +1,15 @@
+require Rails.root.join('lib', 'mastodon', 'migration_helpers')
+
+class AddDisabledToUsers < ActiveRecord::Migration[5.1]
+  include Mastodon::MigrationHelpers
+
+  disable_ddl_transaction!
+
+  def up
+    safety_assured { add_column_with_default :users, :disabled, :bool, default: false }
+  end
+
+  def down
+    remove_column :users, :disabled
+  end
+end