Projekt

Allgemein

Profil

Herunterladen (667 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
f97b0778 Sven Schöling
# This file has been auto-generated. Do not modify it; it will be overwritten
# by rose_auto_create_model.pl automatically.
package SL::DB::AuditTrail;

use strict;

use base qw(SL::DB::Object);

b8b112a3 Sven Schöling
__PACKAGE__->meta->table('audittrail');
f97b0778 Sven Schöling
b8b112a3 Sven Schöling
__PACKAGE__->meta->columns(
action => { type => 'text' },
employee_id => { type => 'integer' },
3eb3d1b1 Moritz Bunkus
formname => { type => 'text' },
b8b112a3 Sven Schöling
id => { type => 'serial', not_null => 1 },
3eb3d1b1 Moritz Bunkus
reference => { type => 'text' },
tablename => { type => 'text' },
trans_id => { type => 'integer' },
transdate => { type => 'timestamp', default => 'now' },
f97b0778 Sven Schöling
);

b8b112a3 Sven Schöling
__PACKAGE__->meta->primary_key_columns([ 'id' ]);

f97b0778 Sven Schöling
1;
;