|
Revision 2, 0.6 kB
(checked in by nperriault, 10 months ago)
|
First commit of the extracted code from production, I hope no passwd has been forgotten :-)
|
| Line | |
|---|
| 1 |
propel: |
|---|
| 2 |
_attributes: { package: plugins.sfPropelActAsLocalizableBehaviorPlugin.lib.model } |
|---|
| 3 |
|
|---|
| 4 |
sf_geolocalization: |
|---|
| 5 |
_attributes: { phpName: sfLocalization, package: plugins.sfPropelActAsLocalizableBehaviorPlugin.lib.model } |
|---|
| 6 |
id: |
|---|
| 7 |
model_name: { type: varchar, size: 255, required: true } |
|---|
| 8 |
model_id: { type: integer, required: true } |
|---|
| 9 |
latitude: { type: float, size: 12, scale: 6, required: true } |
|---|
| 10 |
longitude: { type: float, size: 12, scale: 6, required: true } |
|---|
| 11 |
_indexes: |
|---|
| 12 |
geo_index: [ model_name, model_id, latitude, longitude ] |
|---|
| 13 |
_uniques: |
|---|
| 14 |
object: [ model_name, model_id ] |
|---|