1

我刚刚更新到 rails4 并意识到我的数据库角色和数据库不知何故没有设置。

所以我删除了数据库并重新创建了 app_development 数据库和角色。

现在我正在尝试运行 rake db:migrate 并失败并出现以下错误:

==  DeviseCreateUsers: migrating ==============================================
-- create_table(:users)
   -> 0.0081s
-- add_index(:users, :email, {:unique=>true})
   -> 0.0031s
-- add_index(:users, :reset_password_token, {:unique=>true})
   -> 0.0030s
==  DeviseCreateUsers: migrated (0.0144s) =====================================

rake aborted!
An error has occurred, this and all later migrations canceled:

PG::ProtocolViolation: ERROR:  bind message supplies 1 parameters, but prepared statement "a1" requires 0
: INSERT INTO "schema_migrations" ("version") VALUES ('20130815235601')
Tasks: TOP => db:migrate

我尝试手动为不同的表运行迁移,它为每个表提供相同的结果。

这是它抱怨的示例迁移文件:

class DeviseCreateUsers < ActiveRecord::Migration
  def change
    create_table(:users) do |t|
      ## Database authenticatable
      t.string :email,              :null => false, :default => ""
      t.string :encrypted_password, :null => false, :default => ""

      ## Recoverable
      t.string   :reset_password_token
      t.datetime :reset_password_sent_at

      ## Rememberable
      t.datetime :remember_created_at

      ## Trackable
      t.integer  :sign_in_count, :default => 0
      t.datetime :current_sign_in_at
      t.datetime :last_sign_in_at
      t.string   :current_sign_in_ip
      t.string   :last_sign_in_ip

      ## Confirmable
      # t.string   :confirmation_token
      # t.datetime :confirmed_at
      # t.datetime :confirmation_sent_at
      # t.string   :unconfirmed_email # Only if using reconfirmable

      ## Lockable
      # t.integer  :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
      # t.string   :unlock_token # Only if unlock strategy is :email or :both
      # t.datetime :locked_at

      ## Token authenticatable
      # t.string :authentication_token


      t.timestamps
    end

    add_index :users, :email,                :unique => true
    add_index :users, :reset_password_token, :unique => true
    # add_index :users, :confirmation_token,   :unique => true
    # add_index :users, :unlock_token,         :unique => true
    # add_index :users, :authentication_token, :unique => true
  end
end

我认为一种方法是删除迁移并重新创建它。

但我不确定执行此操作的确切步骤。

任何人都可以帮助我完成迁移运行的确切步骤。我不介意放弃数据库等,因为该项目处于开发阶段并且没有太多我需要担心的产品数据/模式

谢谢。导轨 4.0 PG 9.3.0


更新 1 : 在 schema_mgrations 中看不到任何行:

select * from schema_migrations;
version
---------
(0 rows)

Update2: 手动插入相同的值可以正常工作!

INSERT INTO "schema_migrations" ("version") VALUES ('20130815235601');
INSERT 0 1

select * from schema_migrations
    version
----------------
 20130815235601

(1 行)

更新 3

我手动为不同的表运行了迁移,并且每个表都失败了,所以它不是任何特定迁移的问题。

我还尝试恢复到 Rails 3.2.14,但仍然面临同样的问题。

感觉迷路了,现在卡在里面 4-5 天了!!

4

0 回答 0