3 class PropertyInstaller
extends AkInstaller
7 $this->createTable('properties',
9 id integer max=10 auto increment primary,
10 description string(255),
14 location string limit=200',
15 array('timestamp'=>false));
20 $this->dropTable('properties', array('sequence'=>true));
21 $this->dropTable('properties_property_types', array('sequence'=>true));
22 @Ak
::file_delete(AK_MODELS_DIR
.DS
.'property_property_type.php');