Breaking down login models
You've just added Devise to your Gemfile and bundled. Now it's time to make the migration to add a user and in no time at all you end up with a migration that looks like this. create_table :users do |t| t.string :email t.string :firstname t.string :lastname…