DEV: Fix spelling mistakes in DB migrations (#12811)

* spelling: initial
* spelling: integer
* spelling: irreversible
* spelling: mislabeled
* spelling: notification
* spelling: nullable
* spelling: targeted
This commit is contained in:
Josh Soref
2021-04-23 18:25:10 +02:00
committed by GitHub
parent cfee2728ce
commit 308c032293
9 changed files with 9 additions and 9 deletions
@@ -2,6 +2,6 @@
class AddAutomaticallyUnpinTopicsToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :automatically_unpin_topics, :boolean, nullabe: false, default: true
add_column :users, :automatically_unpin_topics, :boolean, null: false, default: true
end
end