Files
tra_backend/gym/models/gym_skills.py
2020-08-04 16:50:06 +05:30

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')