[Dbix-class] PostgreSQL schema

2013-02-27 Thread Diab Jerius
I'm trying to organize database objects using schema. My primary server backend is Postgres. The DBIC Pg storage docs indicate that it supports schema, but there's not much information anywhere that I can find in the DBIC documentation as to how one specifies schema. So, I've blithely (or

Re: [Dbix-class] PostgreSQL schema

2013-02-27 Thread Diab Jerius
On Thu, 2013-02-28 at 02:13 +1100, Peter Rabbitson wrote: On Wed, Feb 27, 2013 at 10:04:34AM -0500, Diab Jerius wrote: I'm trying to organize database objects using schema. My primary server backend is Postgres. The DBIC Pg storage docs indicate that it supports schema, but there's not

[Dbix-class] DBIx Schema Loader ownership question.

2013-02-27 Thread Rajeev Prasad
I am running following code as myself. but the resulting folders are being created as www:other I am not able to understand why is that so? use strict; use warnings; use DBIx::Class::Schema::Loader qw/make_schema_at/; make_schema_at(     Mydb::Schema,     {debug = 0, dump_directory = ../db/,

Re: [Dbix-class] PostgreSQL schema

2013-02-27 Thread Peter Rabbitson
On Wed, Feb 27, 2013 at 10:04:34AM -0500, Diab Jerius wrote: I'm trying to organize database objects using schema. My primary server backend is Postgres. The DBIC Pg storage docs indicate that it supports schema, but there's not much information anywhere that I can find in the DBIC