
Mango::Schema::User - DBIC schema class for Users

use Mango::Schema;
my $schema = Mango::Schema->connect;
my $users = $schema->resultset('Users')->search;

Mango::Schema::User is loaded by Mango::Schema to read/write user data.

Contains the primary key for each role record.
id => {
data_type => 'INT',
is_auto_increment => 1,
is_nullable => 0,
extras => {unsigned => 1}
},
Contains the user name.
username => {
data_type => 'VARCHAR',
size => 25,
is_nullable => 0
},
The users password.
password => {
data_type => 'VARCHAR',
size => 255,
is_nullable => 0
},
When the user record was created.
created => {
data_type => 'DATETIME',
is_nullable => 0
},
When the user record was updated.
updated => {
data_type => 'DATETIME',
is_nullable => 0
}

Christopher H. Laco
CPAN ID: CLACO
claco@chrislaco.com
http://today.icantfocus.com/blog/