Fixing content type ordering when content_type is not defined.
[akelos.git] / test / fixtures / app / installers / file_installer.php
blobce2651cbe7ad5989fc8232d9cc80ad392a1d7c43
1 <?php
3 class FileInstaller extends AkInstaller
5 function install()
7 $this->createTable('files', '
8 id integer max=10 auto increment primary,
9 name string 50'
13 function uninstall()
15 $this->dropTable('files', array('sequence'=>true));