Show
Ignore:
Timestamp:
02/08/08 02:44:39 (2 years ago)
Author:
eevee
Message:

Database refactoring. Renamed columns and tables to be more consistent and more readable. (#58)

Files:
1 moved

Legend:

Unmodified
Added
Removed
  • veekun/trunk/lib/Vee/Schema/ContestEffects.pm

    r350 r406  
    1 package Vee::Schema::ContestMoves; 
     1package Vee::Schema::ContestEffects; 
    22 
    33use strict; 
     
    77=head1 NAME 
    88 
    9 Vee::Schema::ContestMoves - DBIC class for the C<contestmoves> table 
     9Vee::Schema::ContestEffects - DBIC class for the C<contest_effects> table 
    1010 
    1111=cut 
    1212 
    1313__PACKAGE__->load_components('Core'); 
    14 __PACKAGE__->table('contestmoves'); 
    15 __PACKAGE__->add_columns(qw/ id appeal jam description effect /); 
     14__PACKAGE__->table('contest_effects'); 
     15__PACKAGE__->add_columns(qw/ id appeal jam blurb_rusa description /); 
    1616__PACKAGE__->set_primary_key('id'); 
    1717