package Test::Schema::Words; use strict; use warnings; use base 'DBIx::Class'; __PACKAGE__->load_components("Core"); __PACKAGE__->table("words"); __PACKAGE__->add_columns( "id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 10 }, "word", { data_type => "VARCHAR", default_value => undef, is_nullable => 0, size => 45, }, ); __PACKAGE__->set_primary_key("id"); # Created by DBIx::Class::Schema::Loader v0.04006 @ 2009-10-05 15:47:42 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5dRfU5LHHx2UY5/NtWqqGQ # You can replace this text with custom content, and it will be preserved on regeneration 1;