Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8607039
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T03:14:52+00:00 2026-06-12T03:14:52+00:00

I am trying to run this migration: class RemoveClientFromSalesteam < ActiveRecord::Migration change_table :sales_teams do

  • 0

I am trying to run this migration:

class RemoveClientFromSalesteam < ActiveRecord::Migration
    change_table :sales_teams do |t|
        t.remove :client_id
    end
end

This is the error I am getting:

rake db:migrate
-- change_table(:sales_teams)
rake aborted!
An error has occurred, this and all later migrations canceled:

Index name 'temp_index_altered_sales_teams_on_client_priority_and_personal_priority' on table 'altered_sales_teams' is too long; the limit is 64 characters

Tasks: TOP => db:migrate
(See full trace by running task with --trace)

This is what my schema.rb looks like:

  create_table "sales_teams", :force => true do |t|
    t.string   "name"
    t.integer  "firm_id"
    t.boolean  "client_priority"
    t.boolean  "personal_priority"
    t.datetime "created_at",        :null => false
    t.datetime "updated_at",        :null => false
    t.integer  "client_id"
  end

  add_index "sales_teams", ["client_id"], :name => "index_sales_teams_on_client_id"
  add_index "sales_teams", ["client_priority", "personal_priority"], :name => "index_sales_teams_on_client_priority_and_personal_priority"
  add_index "sales_teams", ["name", "firm_id"], :name => "index_sales_teams_on_name_and_firm_id"

Thoughts?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T03:14:54+00:00Added an answer on June 12, 2026 at 3:14 am

    Drop the index, remove your column, and then re-add the index:

    def up
      remove_index :sales_teams, :column => [ :client_priority, :personal_priority ]
      remove_column :sales_teams, :client_id
      add_index :sales_teams, [ :client_priority, :personal_priority ]
    end
    

    I’m guessing that you’re using SQLite, most databases support real ALTER TABLE operations for removing columns but SQLite forces you to copy the table (and indexes), drop the table, and copy everything back; the Rails SQLite driver takes care of this behind the scenes but, apparently, doesn’t know about the identifier length limit.

    You can also specify your own index names by using the :name option to add_index and remove_index if necessary.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently trying to run this migration: class AddDroppedProjectsCountToUser < ActiveRecord::Migration def self.up
I get this when trying to run the migration: Mysql2::Error: Duplicate entry 'repeat' for
I'm trying to run this code but this error appear: Uncaught TypeError: string is
I am getting this error when running ./manage.py migrate app_name While loading migration 'whatever.0001_initial':
I am trying to run this migration on heroku, but it hangs at the
I receive this error when trying to run a node.js server. I recently migrated
I'm trying to run this script that basically reads/interprets text in from a textfile
Currently I'm trying to run this powershell script: Param ( $websiteName, $physicalPath ) import-module
I am trying to run this tutorial i did not implement the validation part
Hi I am trying to run this query in SQL but it is not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.