transaction_description => { type => 'text' },
storno_id => { type => 'integer' },
direct_debit => { type => 'boolean', default => 'false' },
+ deliverydate => { type => 'date' },
currency_id => { type => 'integer', not_null => 1 },
],
primary_key_columns => [ 'id' ],
+ allow_inline_column_values => 1,
+
foreign_keys => [
contact => {
class => 'SL::DB::Contact',
key_columns => { cp_id => 'cp_id' },
},
+ currency => {
+ class => 'SL::DB::Currency',
+ key_columns => { currency_id => 'id' },
+ },
+
department => {
class => 'SL::DB::Department',
key_columns => { department_id => 'id' },