You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Snippets table got a new field markdown, compared to the original gem. This fork doesn't have a migration to add this field, which results in undefined method markdown' for an instance of Comfy::Cms::Snippet` when accessing snippets interface. I solved it for my project with a simple migration:
class AddMarkdownToComfySnippets < ActiveRecord::Migration[7.1]
def change
add_column :comfy_cms_snippets, :markdown, :boolean, default: false
end
end
The text was updated successfully, but these errors were encountered:
Snippets table got a new field
markdown
, compared to the original gem. This fork doesn't have a migration to add this field, which results inundefined method
markdown' for an instance of Comfy::Cms::Snippet` when accessing snippets interface. I solved it for my project with a simple migration:The text was updated successfully, but these errors were encountered: