diff --git a/core/db/migrate/20240821173641_add_description_to_spree_roles.rb b/core/db/migrate/20240821173641_add_description_to_spree_roles.rb new file mode 100644 index 00000000000..3578008ebf1 --- /dev/null +++ b/core/db/migrate/20240821173641_add_description_to_spree_roles.rb @@ -0,0 +1,5 @@ +class AddDescriptionToSpreeRoles < ActiveRecord::Migration[7.0] + def change + add_column :spree_roles, :description, :text + end +end