1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/schema.yml

58 lines
928 B
YAML
Raw Normal View History

2007-09-13 23:06:04 +04:00
---
2007-09-18 00:39:37 +04:00
User:
2007-09-14 23:06:52 +04:00
tableName: user
className: User
columns:
id:
type: integer
autoincrement: true
username:
type: string
length: 11
2007-09-20 23:18:05 +04:00
relations:
Groups:
class: Group
refClass: UserGroup
local: user_id
foreign: group_id
type: many
2007-09-14 23:06:52 +04:00
2007-09-18 00:39:37 +04:00
UserGroup:
2007-09-14 23:06:52 +04:00
tableName: user_group
className: UserGroup
columns:
user_id:
type: int
length: 11
2007-09-20 23:18:05 +04:00
primary: true
2007-09-14 23:06:52 +04:00
group_id:
type: int
length: 11
2007-09-20 23:18:05 +04:00
primary: true
2007-09-18 00:39:37 +04:00
relations:
User:
foreign: id
local: user_id
2007-09-20 23:18:05 +04:00
type: one
2007-09-18 00:39:37 +04:00
Group:
foreign: id
local: group_id
2007-09-20 23:18:05 +04:00
type: one
2007-09-14 23:06:52 +04:00
2007-09-18 00:39:37 +04:00
Group:
2007-09-14 23:06:52 +04:00
tableName: group
className: Group
columns:
id:
type: integer
autoincrement: true
name:
type: string
2007-09-20 23:18:05 +04:00
length: 255
relations:
Users:
class: User
refClass: UserGroup
local: group_id
foreign: user_id
type: many