1
0
mirror of synced 2025-02-02 05:21:44 +03:00
doctrine2/tests/schema.yml

58 lines
928 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-20 19:18:05 +00:00
relations:
Groups:
class: Group
refClass: UserGroup
local: user_id
foreign: group_id
type: many
2007-09-14 19:06:52 +00:00
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
2007-09-20 19:18:05 +00:00
primary: true
2007-09-14 19:06:52 +00:00
group_id:
type: int
length: 11
2007-09-20 19:18:05 +00:00
primary: true
2007-09-17 20:39:37 +00:00
relations:
User:
foreign: id
local: user_id
2007-09-20 19:18:05 +00:00
type: one
2007-09-17 20:39:37 +00:00
Group:
foreign: id
local: group_id
2007-09-20 19:18:05 +00:00
type: one
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
2007-09-20 19:18:05 +00:00
length: 255
relations:
Users:
class: User
refClass: UserGroup
local: group_id
foreign: user_id
type: many