From b683eb9df58054cc5b3ecb03344dd3c7ff395500 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Fri, 29 May 2015 15:32:01 +0200 Subject: [PATCH] RDBO Update: Letter --- SL/DB/MetaSetup/Letter.pm | 45 ++++++++++++++++++++++----------------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/SL/DB/MetaSetup/Letter.pm b/SL/DB/MetaSetup/Letter.pm index a04c4f159..a0b394c0e 100644 --- a/SL/DB/MetaSetup/Letter.pm +++ b/SL/DB/MetaSetup/Letter.pm @@ -9,32 +9,34 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('letter'); __PACKAGE__->meta->columns( - id => { type => 'integer', not_null => 1, sequence => 'id' }, - vc_id => { type => 'integer', not_null => 1 }, - rcv_name => { type => 'text' }, - rcv_contact => { type => 'text' }, - rcv_address => { type => 'text' }, - rcv_countrycode => { type => 'text' }, - rcv_zipcode => { type => 'text' }, - rcv_city => { type => 'text' }, - letternumber => { type => 'text' }, - jobnumber => { type => 'text' }, - text_created_for => { type => 'text' }, - date => { type => 'text' }, - subject => { type => 'text' }, - greeting => { type => 'text' }, body => { type => 'text' }, close => { type => 'text' }, company_name => { type => 'text' }, + cp_id => { type => 'integer' }, + date => { type => 'date' }, employee_id => { type => 'integer' }, employee_position => { type => 'text' }, - salesman_id => { type => 'integer' }, - salesman_position => { type => 'text' }, + greeting => { type => 'text' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, + intnotes => { type => 'text' }, itime => { type => 'timestamp', default => 'now()' }, + jobnumber => { type => 'text' }, + letternumber => { type => 'text' }, mtime => { type => 'timestamp' }, - rcv_country => { type => 'text' }, page_created_for => { type => 'text' }, - cp_id => { type => 'integer' }, + rcv_address => { type => 'text' }, + rcv_city => { type => 'text' }, + rcv_contact => { type => 'text' }, + rcv_country => { type => 'text' }, + rcv_countrycode => { type => 'text' }, + rcv_name => { type => 'text' }, + rcv_zipcode => { type => 'text' }, + reference => { type => 'text' }, + salesman_id => { type => 'integer' }, + salesman_position => { type => 'text' }, + subject => { type => 'text' }, + text_created_for => { type => 'text' }, + vc_id => { type => 'integer', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); @@ -42,6 +44,11 @@ __PACKAGE__->meta->primary_key_columns([ 'id' ]); __PACKAGE__->meta->allow_inline_column_values(1); __PACKAGE__->meta->foreign_keys( + contact => { + class => 'SL::DB::Contact', + key_columns => { cp_id => 'cp_id' }, + }, + employee => { class => 'SL::DB::Employee', key_columns => { employee_id => 'id' }, @@ -53,7 +60,5 @@ __PACKAGE__->meta->foreign_keys( }, ); -# __PACKAGE__->meta->initialize; - 1; ; -- 2.20.1