mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 10:19:09 +02:00
12 lines
263 B
Python
12 lines
263 B
Python
# See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class GymSkills(models.Model):
|
|
_name = 'gym.skills'
|
|
_description = "Gym Skills"
|
|
|
|
name = fields.Char('Skill', required=True)
|
|
code = fields.Char('Code')
|