I'm currently trying this out, but I run into some error.
When I want to save a content, which contains some image, it raises an error
Field 'blob_id' doesn't have a default value
Without an image, it works fine.
For now, I'm using https://github.com/kylefox/trix/ which works fine and it's simple. But images are saved within the same model.
I suppose I'll wait until rails 6 will be out. (currently using 5.2.2.1)
There could be a configuration issue with the Active Storage. https://www.driftingruby.com/episodes/in-depth-look-into-activestorage is a good episode on the setup and usage of ActiveStorage. Also, try to create a new `5.2.2.1` application and minimally add in the Action Text with Active Storage. See if you run into the same issues so you can at least determine where the issue is.
I have still no idea why this does not work. Again i came up with same problem.
I'll try it tomorrow from scratch and I let you know if something different will came up.
Thanks for a help.
I create a new application now with SQLite and it works. But updating articles with inserted images from the web are impossible.
I've created a [repository](https://github.com/Kani999/action-text-template) with docker-compose. At the end of README is a tutorial on how to run the application and problem description.
I hope I get this run with MySQL, I'll let you know if I do some progress. Sorry for spamming.
To get this running on my rails5 app I also had to run
```
rails action_text:install
```
it gives you the first two migrations seen [in the example code here](https://github.com/driftingruby/167-using-actiontext-in-a-rails-5-2-application/tree/master/db/migrate) ,
and runs
```
yarn add https://github.com/kobaltz/actiontext from "."
```