From 308c032293b1ef48bed3731949cc3dfcd0b4e04d Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Fri, 23 Apr 2021 12:25:10 -0400 Subject: [PATCH] DEV: Fix spelling mistakes in DB migrations (#12811) * spelling: initial * spelling: integer * spelling: irreversible * spelling: mislabeled * spelling: notification * spelling: nullable * spelling: targeted --- ...0806030641_add_new_password_new_salt_email_token_to_users.rb | 2 +- db/migrate/20120807223020_create_actions.rb | 2 +- db/migrate/20130615073305_remove_topic_id_from_uploads.rb | 2 +- .../20151117165756_add_automatically_unpin_topics_to_users.rb | 2 +- db/migrate/20160108051129_fix_incorrect_user_history.rb | 2 +- .../20160112025852_remove_users_from_topic_allowed_users.rb | 2 +- db/migrate/20170313192741_add_themes.rb | 2 +- db/migrate/20200429095034_add_topic_thumbnail_information.rb | 2 +- .../20210201034048_move_category_last_seen_at_to_new_table.rb | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/db/migrate/20120806030641_add_new_password_new_salt_email_token_to_users.rb b/db/migrate/20120806030641_add_new_password_new_salt_email_token_to_users.rb index 5f5fc673aa..60bc43f135 100644 --- a/db/migrate/20120806030641_add_new_password_new_salt_email_token_to_users.rb +++ b/db/migrate/20120806030641_add_new_password_new_salt_email_token_to_users.rb @@ -4,7 +4,7 @@ class AddNewPasswordNewSaltEmailTokenToUsers < ActiveRecord::Migration[4.2] def change add_column :users, :new_salt, :string, limit: 32 add_column :users, :new_password_hash, :string, limit: 64 - # email token is more flexible, can be used for both intial activation AND password change confirmation + # email token is more flexible, can be used for both initial activation AND password change confirmation add_column :users, :email_token, :string, limit: 32 remove_column :users, :activation_key end diff --git a/db/migrate/20120807223020_create_actions.rb b/db/migrate/20120807223020_create_actions.rb index 9819e5d31e..0fe02dd09a 100644 --- a/db/migrate/20120807223020_create_actions.rb +++ b/db/migrate/20120807223020_create_actions.rb @@ -7,7 +7,7 @@ class CreateActions < ActiveRecord::Migration[4.2] # I elected for multiple ids as opposed to using :as cause it makes the table # thinner, and the joining semantics much simpler (a simple multiple left join will do) # - # There is a notificiation table as well that covers much of this, + # There is a notification table as well that covers much of this, # but this table is wider and is intended for non-notifying actions as well t.integer :action_type, null: false diff --git a/db/migrate/20130615073305_remove_topic_id_from_uploads.rb b/db/migrate/20130615073305_remove_topic_id_from_uploads.rb index 5f5c3b75d7..742e403e3b 100644 --- a/db/migrate/20130615073305_remove_topic_id_from_uploads.rb +++ b/db/migrate/20130615073305_remove_topic_id_from_uploads.rb @@ -6,6 +6,6 @@ class RemoveTopicIdFromUploads < ActiveRecord::Migration[4.2] end def down - add_column :uploads, :topic_id, :interger, null: false, default: -1 + add_column :uploads, :topic_id, :integer, null: false, default: -1 end end diff --git a/db/migrate/20151117165756_add_automatically_unpin_topics_to_users.rb b/db/migrate/20151117165756_add_automatically_unpin_topics_to_users.rb index c73709896b..3fffe985ec 100644 --- a/db/migrate/20151117165756_add_automatically_unpin_topics_to_users.rb +++ b/db/migrate/20151117165756_add_automatically_unpin_topics_to_users.rb @@ -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 diff --git a/db/migrate/20160108051129_fix_incorrect_user_history.rb b/db/migrate/20160108051129_fix_incorrect_user_history.rb index ed31e821e2..84282877fd 100644 --- a/db/migrate/20160108051129_fix_incorrect_user_history.rb +++ b/db/migrate/20160108051129_fix_incorrect_user_history.rb @@ -9,7 +9,7 @@ class FixIncorrectUserHistory < ActiveRecord::Migration[4.2] # # This migration hunts for date stuff started going wrong and date it started being good and corrects the data - # this is a :auto_trust_level_change mislabled as :check_email + # this is a :auto_trust_level_change mislabeled as :check_email # impersonate that was actually delete topic condition = <