Adding tests for securing private variable inclussion on templates.
[akelos.git] / test / fixtures / app / installers / panorama_installer.php
blob1c97715e44632ef4728dc4081cad02db55c13e09
1 <?php
3 class PanoramaInstaller extends AkInstaller
5 function install()
7 $this->createTable('panoramas', '
8 id integer max=10 auto increment primary,
9 property_id integer,
10 title string limit=200'
14 function uninstall()
16 $this->dropTable('panoramas', array('sequence'=>true));