rails4 に更新したところ、自分の db ロールとデータベースがどういうわけかセットアップされていないことに気付きました。
そのため、データベースを削除し、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
1 つの方法は、移行を削除して再作成することだと思います。
しかし、それを行うための正確な手順はわかりません。
誰でも、移行を実行するための正確な手順を手伝ってくれますか? プロジェクトは開発段階であり、心配する必要がある製品データ/スキーマはあまりないため、データベースなどを削除してもかまいません。
ありがとう。レール 4.0 PG 9.3.0
Update1: 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日間立ち往生しています!!