IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4879 for trunk/Nebulous/t


Ignore:
Timestamp:
Aug 25, 2005, 1:42:34 PM (21 years ago)
Author:
jhoblitt
Message:

document object methods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/t/Test/Nebulous.pm

    r4440 r4879  
    11# Copyright (C) 2004  Joshua Hoblitt
    22#
    3 # $Id: Nebulous.pm,v 1.4 2005-06-30 02:35:06 jhoblitt Exp $
     3# $Id: Nebulous.pm,v 1.5 2005-08-25 23:42:33 jhoblitt Exp $
    44
    55package Test::Nebulous;
     
    114114        key(class_id)
    115115    ) ENGINE=innodb;
     116
     117DROP TABLE IF EXISTS log;
     118CREATE TABLE log (
     119    timestamp TIMESTAMP,
     120    hostname VARCHAR(255),
     121    level VARCHAR(255),
     122    sub VARCHAR(255),
     123    message VARCHAR(2048) NOT NULL,
     124    PRIMARY KEY(timestamp)
     125) ENGINE=innodb;
Note: See TracChangeset for help on using the changeset viewer.