Zorglub has asked for the wisdom of the Perl Monks concerning the following question:

How could I do that stuff please : http://search.cpan.org/~ash/DBIx-Class-0.08010/lib/DBIx/Class/Manual/Cookbook.pod#Creating_DDL_SQL But under Catalyst ? I have upgraded my Model (Schema ?), and I want to update (deploy) it in my mysql database. How could I do please ? Thanks !

Replies are listed 'Best First'.
Re: Update Schema under Catalyst
by stonecolddevin (Parson) on Nov 13, 2008 at 15:30 UTC

    Take a look at this thread for starters.

    A Catalyst Schema using DBIx::Class is the exact same as any other DBIx::Class schema, so you're allowed (and supposed to) treat it as one. Anything you do that's based off of your schema is done through DBIx::Class, not Catalyst.

    meh.