Fixes #149
[akelos.git] / test / fixtures / app / installers / picture_installer.php
blobb548f9de925571d5ed76b7e55c16c50d83ce7e83
1 <?php
3 class PictureInstaller extends AkInstaller
5 function install()
7 $this->createTable('pictures', '
8 id,
9 property_id,
10 landlord_id,
11 title string(200)'
15 function uninstall()
17 $this->dropTable('pictures', array('sequence'=>true));