Projekt

Allgemein

Profil

Herunterladen (1,21 KB) Statistiken
| Zweig: | Markierung: | Revision:
82515b2d 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::Chart;

use strict;

2ea07c13 Sven Schöling
use parent qw(SL::DB::Object);
82515b2d Sven Schöling
b8b112a3 Sven Schöling
__PACKAGE__->meta->table('chart');

__PACKAGE__->meta->columns(
accno => { type => 'text', not_null => 1 },
category => { type => 'character', length => 1 },
3eb3d1b1 Moritz Bunkus
charttype => { type => 'character', default => 'A', length => 1 },
b8b112a3 Sven Schöling
datevautomatik => { type => 'boolean', default => 'false' },
3eb3d1b1 Moritz Bunkus
description => { type => 'text' },
id => { type => 'integer', not_null => 1, sequence => 'id' },
b8b112a3 Sven Schöling
itime => { type => 'timestamp', default => 'now()' },
3eb3d1b1 Moritz Bunkus
link => { type => 'text', not_null => 1 },
b8b112a3 Sven Schöling
mtime => { type => 'timestamp' },
new_chart_id => { type => 'integer' },
3eb3d1b1 Moritz Bunkus
pos_bilanz => { type => 'integer' },
pos_bwa => { type => 'integer' },
14d71a6d Sven Schöling
pos_er => { type => 'integer' },
3eb3d1b1 Moritz Bunkus
pos_eur => { type => 'integer' },
taxkey_id => { type => 'integer' },
b8b112a3 Sven Schöling
valid_from => { type => 'date' },
82515b2d Sven Schöling
);

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

__PACKAGE__->meta->unique_keys([ 'accno' ]);

__PACKAGE__->meta->allow_inline_column_values(1);

82515b2d Sven Schöling
1;
;