Can we have a look to your post_installer.php file?
Chris,
The code is commented by default and is added as an example for database creation.
As you can see you if you run
./script/migrate post uninstall
for getting back to version 0, and then uncommon the lines like
<?php
class PostInstaller extends AkInstaller
{
function up_1()
{
$this->createTable('posts', "id,title");
}
function down_1()
{
$this->dropTable('posts');
}
}
?>
and run the migration again by running
./script/migrate post install
you'll get the database table created.
1 to 5 of 5