We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
baserCMS 4系→5系にマイグレーションする際に プラグインなどで、blog_post_idなど、リレーション用のカラムにindexが貼ってあると、エラーで処理が中断してしまいます。
例)optional_links テーブル
'indexes' => array( 'PRIMARY' => array('column' => 'id', 'unique' => 1), 'blog_post_id' => array('column' => 'blog_post_id', 'unique' => 0), 'blog_content_id' => array('column' => 'blog_content_id', 'unique' => 0) ),
こちらが原因で、 Invalid constraint type `` in table optional_links. で処理が止まってしまいます。
Invalid constraint type `` in table
.
The text was updated successfully, but these errors were encountered:
4系の環境メンテナンス→バックアップデータを取得する前に 4系のサイト側のDBから追加indexを削除しないと正常動作しない。
Sorry, something went wrong.
fix baserproject#13 プラグインなどでテーブルにindexを追加しているとエラーになる問題を解決
8fcf35e
No branches or pull requests
baserCMS 4系→5系にマイグレーションする際に
プラグインなどで、blog_post_idなど、リレーション用のカラムにindexが貼ってあると、エラーで処理が中断してしまいます。
例)optional_links テーブル
こちらが原因で、
Invalid constraint type `` in table
optional_links.
で処理が止まってしまいます。
The text was updated successfully, but these errors were encountered: