Adding tests for securing private variable inclussion on templates.
[akelos.git] / test / fixtures / app / installers / todo_list_installer.php
blobdbf3f58e828a5948cb311c864b127f60cb37aa00
1 <?php
3 class TodoListInstaller extends AkInstaller
5 function up_1()
7 $this->createTable('todo_lists', "
8 id,
9 name,
10 description,
11 position integer default 1,
12 created_at");
15 function down_1()
17 $this->dropTable('todo_lists', array('sequence'=>true));