4

この移行を実行しようとしています:

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

これは私が得ているエラーです:

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)

これは私schema.rbのように見えるものです:

  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"

考え?

ありがとう。

4

1 に答える 1

5

インデックスを削除し、列を削除してから、インデックスを再度追加します。

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

ほとんどのデータベースは、列を削除するための実際の ALTER TABLE 操作をサポートしていますが、SQLite では、テーブル (およびインデックス) をコピーし、テーブルを削除して、すべてをコピーして戻す必要があります。Rails SQLite ドライバーはこれを舞台裏で処理しますが、明らかに、識別子の長さの制限については認識していません。

必要に応じて to オプションと:nameオプションを使用して、独自のインデックス名を指定することもできます。add_indexremove_index

于 2012-10-01T02:09:49.377 に答える