|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/fatshado/cgi-bin/MT/lib/MT/ |
Upload File : |
# Copyright 2001, 2002 Benjamin Trott. This code cannot be redistributed without
# permission from www.movabletype.org.
#
# $Id: TBPing.pm,v 1.2 2002/06/11 07:46:51 btrott Exp $
package MT::TBPing;
use strict;
use MT::Object;
@MT::TBPing::ISA = qw( MT::Object );
__PACKAGE__->install_properties({
columns => [
'id', 'blog_id', 'tb_id', 'title', 'excerpt', 'source_url', 'ip',
'blog_name',
],
indexes => {
created_on => 1,
blog_id => 1,
tb_id => 1,
ip => 1,
},
audit => 1,
datasource => 'tbping',
primary_key => 'id',
});
1;