Drop unused body columns

This commit is contained in:
Jeffrey Hardy
2024-09-19 10:11:30 -04:00
parent b53054bdb0
commit 8a0a541d5c
6 changed files with 23 additions and 28 deletions
+1 -1
View File
@@ -41,6 +41,6 @@ class BubblesController < ApplicationController
end
def bubble_params
params.require(:bubble).permit(:title, :body, :color, :due_on, :image, tag_ids: [])
params.require(:bubble).permit(:title, :color, :due_on, :image, tag_ids: [])
end
end