1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| Familles:
connection: doctrine
tableName: familles
actAs:
Timestampable:
NestedSet:
hasManyRoots: true
rootColumnName: root_id
columns:
id:
type: integer(4)
fixed: false
unsigned: false
primary: true
autoincrement: true
libelle:
type: string(64)
fixed: false
unsigned: false
primary: false
default: ''
notnull: true
autoincrement: false
created_at:
type: timestamp(25)
fixed: false
unsigned: false
primary: false
notnull: true
autoincrement: false
updated_at:
type: timestamp(25)
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
relations:
Articles:
local: id
foreign: famille_id
type: many |