uam / propel-addressable-behavior
A Propel behavior that adds address-related fields to a table.
1.0.3
2013-11-30 10:23 UTC
Requires
- propel/propel1: ~1.6
This package is auto-updated.
Last update: 2024-10-29 03:43:11 UTC
README
The Addressable behavior adds address-related fields to a table.
Requirements
This behavior requires Propel >= 1.6.0.
Installation
Get the code by adding the following line to your composer.json
file:
require: { "opichon/propel-addressable-behavior": "dev-master" }
Then run:
php composer.phar install
or
php composer.phar update
Configuration
Add the following to your propel.ini
or build.properties
file.
propel.behavior.addressable.class: AddressableBehavior
Usage
In the Propel schema
Add the behavior to the relevant table's schema definition:
<?xml version="1.0" encoding="utf-8"?> <database name="default" namespace="My\App\lib" defaultIdMethod="native"> <table name="document" phpName="Document" idMethod="native"> <!-- you column definitions --> <behavior name="addressable" /> </table> </database>