Help for this page

Select Code to Download


  1. or download this
    {
        package Promotion::Promotion;
    ...
        __PACKAGE__>table( 'promotion' );
        __PACKAGE__>columns( All => qw( id name ) );
    }
    
  2. or download this
    {
        package Promotion::Promotion;
    ...
        __PACKAGE__->can( 'table' )->( __PACKAGE__, 'promotion' );
        __PACKAGE__->can( 'columns' )->( __PACKAGE__, All => qw( id name )
    + );
    }