The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Games::Framework::RCP::Database::Result::CombinedItem - The list of item combinations.

VERSION

0.22

DESCRIPTION

The combined items table is a convenience table for Game Masters. As many like trying to combine two or more various things together, this table allows one to capture the various combinations that are tried.

For simplicity sake, this table assumes that combined items only require two items to make a third. If a particular item requires three or more items, and none of those can be pre-combined, then feel free to modify the table above and allow NULL on the extra columns.

DATABASE TABLE

The list of item combinations.

id_combined_item

This is the primary key of the table, using the traditional auto incrementing.

fkey_item

This ID points to the Item table in a many to one mapping.

This is the item that results from combining the other two.

fkey_item_part_1

This ID points to the Item table in a many to one mapping.

This is the first item used to make fkey_item.

fkey_item

This ID points to the Item table in a many to one mapping.

This is the second item used to make fkey_item.

SUBROUTINES/METHODS

sqlt_deploy_hook()

sqlt_deploy_hook is used to define the table settings for the various databases.

AUTHOR

Jason Felds, <wolfman.ncsu2000 at gmail.com>

BUGS AND LIMITATIONS

Please report any bugs or feature requests to bug-Games-Framework-RCP at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Games-Framework-RCP-Database-Result-CombinedItem. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Games::Framework::RCP::Database::Result::CombinedItem

You can also look for information at:

ACKNOWLEDGEMENTS

See Games::Framework::RCP for all acknowledgements.

LICENSE AND COPYRIGHT

Copyright 2009 Jason Felds, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.