Set up Gutentag migrations
mainAfter adding the gem to your Gemfile, you must import and run the migrations to create the necessary database tables for tags and taggings.
Important for UUID users: If you use UUID primary keys, you must manually alter the generated migration files to use UUIDs for the taggable_id foreign key column before running db:migrate.
bundle exec rake gutentag:install:migrations
bundle exec rails generate gutentag:migration_versions
bundle exec rake db:migrate