source: server/trunk/web/lib/Sophie/Base/Result/ChatPaste.pm @ 100

Last change on this file since 100 was 100, checked in by nanardon, 14 years ago
  • add web page to view paste from the bot
  • add first function
File size: 315 bytes
Line 
1package Sophie::Base::Result::ChatPaste;
2
3use strict;
4use warnings;
5use base qw(DBIx::Class::Core);
6
7__PACKAGE__->table('chat_paste');
8__PACKAGE__->add_columns(qw/user_id id reply whenpaste title/);
9__PACKAGE__->set_primary_key('id');
10__PACKAGE__->belongs_to(Users => 'Sophie::Base::Result::Users', 'user_id');
11
121;
Note: See TracBrowser for help on using the repository browser.