Hello, beginner/intermediate here as well, learning a lot as I go.
I'm testing adding an input for vacation days for a store.
I want to be able to update a Store model with an array of dates (['2022-10-31', '2022-11-27'])
I've:
-Done the migration
-Added the new attributes to permitted attributes in the Spree initializer.
-Added a little shim to serialize the database text column as an array to the Spree::Store model.
-Then defaced the admin view to add the columns.
This looks fine (schema, no errors on boot, or when I update the Store via the new view).
But, when I go to save the store with a test array, it's not saving the new columns.
Am I missing something?