I have created one Catalyst application and I have created Schema and Model using below command
perl script/myapp_create.pl model TestDatabase DBIC::Schema MyApp::Schema::TestDatabase create=static dbi:mysql:db
After this command, Result directory contains the Abc.pm
for table named abc
.
Now I added one more table named xyz
in my database db
.
The issue, I am facing is ,how can I update Result folder so that now it contains Xyz.pm
for xyz
table also.
I want to use create=static
only.
After executing above command again,the Result folder changes.
But Isn't there any other better way?