From 3f1ff593d409a833df36732ece172039c46a9659 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Tue, 3 Jun 2014 15:30:36 +0200 Subject: [PATCH] MT#5879 Add VAT number to contacts. --- lib/NGCP/Schema/Result/contacts.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/NGCP/Schema/Result/contacts.pm b/lib/NGCP/Schema/Result/contacts.pm index 4804a234..def5c1c9 100644 --- a/lib/NGCP/Schema/Result/contacts.pm +++ b/lib/NGCP/Schema/Result/contacts.pm @@ -73,6 +73,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 34 }, "bic", { data_type => "varchar", is_nullable => 1, size => 11 }, + "vatnum", + { data_type => "varchar", is_nullable => 1, size => 127 }, ); __PACKAGE__->set_primary_key("id");