[Catalyst] (no subject)

2012-08-30 Thread piet molenaar
Hi, We work with svn were we've committed the schema classes also into the repository. Using the Catalyst helper script we tried to update the DBIC schema that was created with the Catalyst helper after checkout on another machine and the following error appeared. DBIx::Class::Schema::Loader::mak

Re: [Catalyst] (no subject)

2012-08-30 Thread Octavian Rasnita
From: piet molenaar Subject: [Catalyst] (no subject) Hi, We work with svn were we've committed the schema classes also into the repository. Using the Catalyst helper script we tried to update the DBIC schema that was created with the Catalyst helper after checkout on another machine and t

Re: [Catalyst] (no subject)

2012-08-30 Thread Dimitar Petrov
Hello, you can pass a use_moose => 1 option to the make_schema_at as it's described in the documentation here https://metacpan.org/module/DBIx::Class::Schema::Loader#make_schema_at However if you have already created the schema on your dev machine and you checkout the code on another machine, it'

Re: [Catalyst] (no subject)

2012-08-30 Thread Octavian Rasnita
From: Dimitar Petrov Hello, you can pass a use_moose => 1 option to the make_schema_at as it's described in the documentation here https://metacpan.org/module/DBIx::Class::Schema::Loader#make_schema_at Thanks. I used use_moose=1 in the Catalyst helper command line and it should hav