Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > e89f26d8a4883a6571921dfce7846605 > files > 31

perl-DBIx-SearchBuilder-1.650.0-2.mga4.noarch.rpm

package Example::Model::Address;

use base qw/DBIx::SearchBuilder::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;