My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Car:
connection: doctrine
tableName: car
columns:
id:
type: integer(8)
fixed: false
unsigned: false
primary: true
autoincrement: true
brand:
type: string()
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
relations:
Users:
local: id
foreign: car_id
type: many
class: User
User:
connection: doctrine
tableName: user
columns:
id:
type: integer(8)
fixed: false
unsigned: false
primary: true
autoincrement: true
name:
type: string()
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
email:
type: string()
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
phone:
type: string(9)
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
car_id:
type: integer(8)
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
relations:
Car:
local: car_id
foreign: id
type: one

Change log

r31 by turkeybastingemus on Jan 10, 2010   Diff
Episode 42 of Zendcasts: more at
zendcasts.com
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 1235 bytes, 66 lines
Powered by Google Project Hosting