1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
7 use base qw(SL::DB::Object);
9 __PACKAGE__->meta->table('chart');
11 __PACKAGE__->meta->columns(
12 accno => { type => 'text', not_null => 1 },
13 category => { type => 'character', length => 1 },
14 charttype => { type => 'character', default => 'A', length => 1 },
15 datevautomatik => { type => 'boolean', default => 'false' },
16 description => { type => 'text' },
17 id => { type => 'integer', not_null => 1, sequence => 'id' },
18 itime => { type => 'timestamp', default => 'now()' },
19 link => { type => 'text', not_null => 1 },
20 mtime => { type => 'timestamp' },
21 new_chart_id => { type => 'integer' },
22 pos_bilanz => { type => 'integer' },
23 pos_bwa => { type => 'integer' },
24 pos_eur => { type => 'integer' },
25 taxkey_id => { type => 'integer' },
26 valid_from => { type => 'date' },
29 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
31 __PACKAGE__->meta->unique_keys([ 'accno' ]);
33 __PACKAGE__->meta->allow_inline_column_values(1);