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/", generate_pod => 0,},
    ["dbi:mysql:bvoiptsm:localhost:3306", 'userid', 'password'],
);



It generates following structure. (see I running as userid = uid(my personal 
uid) but the output is owned by www user!). I am not the admin on this server 
and I am not sure how much the admin knows about DBIx, so I want to know from 
this list, exactly what I should be telling to admin to fix.


> ls -ltR
.:
total 1
drwxrwxr-x    3 www      other         512 Feb 27 23:23 Mydb

./Mydb:
total 2
drwxrwxr-x    3 www      other         512 Feb 27 23:23 Schema
-rw-r-----    1 www      other         461 Feb 27 23:23 Schema.pm

./Mydb/Schema:
total 1
drwxrwxr-x    2 www      other         512 Feb 27 23:23 Result

./Mydb/Schema/Result:
total 4
-rw-r-----    1 www      other        1227 Feb 27 23:23 Table1.pm
-rw-r-----    1 www      other        1268 Feb 27 23:23 Table2.pm
_______________________________________________
List: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/DBIx-Class/
Searchable Archive: http://www.grokbase.com/group/dbix-class@lists.scsys.co.uk

Reply via email to