about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--db/migrate/20191014164340_add_force_private_to_accounts.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20191014164340_add_force_private_to_accounts.rb b/db/migrate/20191014164340_add_force_private_to_accounts.rb
new file mode 100644
index 000000000..4201b6481
--- /dev/null
+++ b/db/migrate/20191014164340_add_force_private_to_accounts.rb
@@ -0,0 +1,7 @@
+class AddForcePrivateToAccounts < ActiveRecord::Migration[5.2]
+  def change
+    safety_assured {
+      add_column :accounts, :force_private, :boolean, null: false, default: false
+    }
+  end
+end