mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 10:19:09 +02:00
add gym module
This commit is contained in:
11
gym/models/gym_skills.py
Normal file
11
gym/models/gym_skills.py
Normal file
@@ -0,0 +1,11 @@
|
||||
# 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')
|
||||
Reference in New Issue
Block a user