[IMP] event_speaker:

remove speaker_ids from event_event
This commit is contained in:
clementthomas
2024-03-22 12:29:15 +01:00
parent 0aab44b770
commit 127275b3f7
2 changed files with 0 additions and 26 deletions

View File

@@ -1,10 +0,0 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import fields, models
class EventEvent(models.Model):
_inherit = "event.event"
speaker_ids = fields.Many2many(
'res.partner', string="Speakers"
)