OCA reporting engine fork for dev and update.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
321 B

  1. from openerp.osv import fields, osv
  2. class py3o_server(osv.Model):
  3. _name = 'py3o.server'
  4. _columns = {
  5. 'url': fields.char(
  6. u"URL",
  7. size=256,
  8. ),
  9. 'is_active': fields.boolean(
  10. u"Active",
  11. )
  12. }
  13. _defaults = {
  14. 'is_active': True,
  15. }