run
script/generate model User
edit
/app/installers/user_installer.php
<?php class UserInstaller extends AkInstaller { function up_1() { $this->createTable('users', " id, name string(30) UNIQUE, password string(10) index idx_password, e_mail UNIQUE "); } function down_1() { $this->dropTable('users'); } } ?>
run
script/migrate User install
Ready