| Foorum documentation | Contained in the Foorum distribution. |
Foorum::Schema::LogAction - Table 'log_action'
INT(11)
NOT NULL
VARCHAR(24)
VARCHAR(12)
INT(11)
INT(11)
NOT NULL
TEXT(65535)
INT(11)
NOT NULL
Fayland Lam <fayland at gmail.com>
| Foorum documentation | Contained in the Foorum distribution. |
package Foorum::Schema::LogAction; use strict; use warnings; our $VERSION = '1.001000'; use base 'DBIx::Class'; __PACKAGE__->load_components('Core'); __PACKAGE__->table('log_action'); __PACKAGE__->add_columns( 'user_id', { data_type => 'INT', default_value => 0, is_nullable => 0, size => 11 }, 'action', { data_type => 'VARCHAR', default_value => undef, is_nullable => 1, size => 24, }, 'object_type', { data_type => 'VARCHAR', default_value => undef, is_nullable => 1, size => 12, }, 'object_id', { data_type => 'INT', default_value => undef, is_nullable => 1, size => 11 }, 'time', { data_type => 'INT', default_value => 0, is_nullable => 0, size => 11, }, 'text', { data_type => 'TEXT', default_value => undef, is_nullable => 1, size => 65535, }, 'forum_id', { data_type => 'INT', default_value => 0, is_nullable => 0, size => 11 }, ); 1; __END__