Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 8030729c251139004908bbfc016d80d6 > files > 51

perl-Jifty-DBI-0.760.0-2.mga4.noarch.rpm

package Example::Model::Address;

use base qw/Jifty::DBI::Record/;

# Class and instance method

sub Table { "Addresses" }

# Class and instance method

sub Schema {
    return {
        Name => { type => 'varchar', },
        Phone => { type => 'varchar', },
        EmployeeId => { REFERENCES => 'Example::Model::Employee', },
    }
}

1;