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 5f5fc673aa8..60bc43f135c 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 9819e5d31e4..0fe02dd09aa 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 5f5c3b75d71..742e403e3b3 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 c73709896ba..3fffe985ec2 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 ed31e821e26..84282877fd4 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 = <