1
0
mirror of synced 2025-01-22 16:21:40 +03:00

38 lines
642 B
YAML
Raw Normal View History

2007-10-15 19:34:48 +00:00
---
User:
2007-10-18 04:03:33 +00:00
inheritance:
extends: Entity
fields:
id:
type: integer
size: 11
primary: true
autoincrement: true
2007-10-15 19:34:48 +00:00
username:
type: string
length: 255
2007-10-18 04:03:33 +00:00
hair_color:
type: string
length: 255
2007-10-15 19:34:48 +00:00
contact_id:
type: integer
length: 11
2007-10-15 19:34:48 +00:00
relations:
Contact:
local: contact_id
2007-10-18 04:03:33 +00:00
foreign: id
foreignType: one
Cars:
class: Car
refClass: UserCar
Groups:
class: Group
refClass: UserGroup
indexes:
name_x:
columns:
username:
sorting: ASC
length: 11
primary: true
type: unique