Rapsys Git
/
airbundle
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove useless post check
[airbundle]
/
Resources
/
config
/
doctrine
/
Location.orm.yml
1
Rapsys\AirBundle\Entity\Location:
2
type: entity
3
repositoryClass: Rapsys\AirBundle\Repository\LocationRepository
4
table: locations
5
id:
6
id:
7
type: integer
8
generator:
9
strategy: AUTO
10
options:
11
unsigned: true
12
fields:
13
title:
14
type: string
15
length: 32
16
short:
17
type: string
18
length: 16
19
address:
20
type: string
21
length: 32
22
zipcode:
23
type: string
24
length: 5
25
city:
26
type: string
27
length: 64
28
latitude:
29
type: decimal
30
precision: 8
31
scale: 6
32
longitude:
33
type: decimal
34
precision: 9
35
scale: 6
36
hotspot:
37
type: boolean
38
created:
39
type: datetime
40
updated:
41
type: datetime
42
oneToMany:
43
sessions:
44
targetEntity: Rapsys\AirBundle\Entity\Session
45
mappedBy: location
46
indexes:
47
#XXX: used in SessionRepository::(findAllPendingDailyWeather|findAllPendingHourlyWeather)
48
zipcode:
49
columns: [ zipcode ]