I created db-table like this,
# ./zf.sh create db-table TestModel admin
and now I want to delete the TestModel .
How can I delete the db-table created.
and One more question,its also Zend Framework question,
I want to create model(db-table) under the admin module.
like /modules/admin/model/(here)
I tried like this
#./zf.sh create model TestModel admin
but it create model into applications/models
How should I do to create the model into my moduels?
Thanks!