1
0
mirror of synced 2025-01-31 04:21:44 +03:00
doctrine2/tests/schema.yml

40 lines
594 B
YAML
Raw Normal View History

2007-09-13 19:06:04 +00:00
---
2007-09-17 20:39:37 +00:00
User:
2007-09-14 19:06:52 +00:00
tableName: user
className: User
columns:
id:
type: integer
autoincrement: true
username:
type: string
length: 11
2007-09-17 20:39:37 +00:00
UserGroup:
2007-09-14 19:06:52 +00:00
tableName: user_group
className: UserGroup
columns:
user_id:
type: int
length: 11
group_id:
type: int
length: 11
2007-09-17 20:39:37 +00:00
relations:
User:
foreign: id
local: user_id
Group:
foreign: id
local: group_id
2007-09-14 19:06:52 +00:00
2007-09-17 20:39:37 +00:00
Group:
2007-09-14 19:06:52 +00:00
tableName: group
className: Group
columns:
id:
type: integer
autoincrement: true
name:
type: string
length: 255