mirror of https://github.com/rails/rails
Merge pull request #40995 from garrettdimon/patch-1
Add note for ActionText models that use UUID's [ci skip]
This commit is contained in:
commit
b1f1879a50
|
@ -47,6 +47,8 @@ happens after every keystroke, and avoids the need to use execCommand at all.
|
|||
|
||||
Run `bin/rails action_text:install` to add the Yarn package and copy over the necessary migration. Also, you need to set up Active Storage for embedded images and other attachments. Please refer to the [Active Storage Overview](active_storage_overview.html) guide.
|
||||
|
||||
NOTE: ActionText uses polymorphic relationships with the `action_text_rich_texts` table so that it can be shared with all models that have rich text attributes. If your models with ActionText content use UUID values for identifiers, all models that use ActionText attributes will need to use UUID values for their unique identifiers. The generated migration for ActionText will also need to be updated to specify `type: :uuid` for the `:record` `references` line.
|
||||
|
||||
After the installation is complete, a Rails app using Webpacker should have the following changes:
|
||||
|
||||
1. Both `trix` and `@rails/actiontext` should be required in your JavaScript pack.
|
||||
|
|
Loading…
Reference in New Issue