Felder end_date, terminated, extend_automatically_by ergänzt
[kivitendo-erp.git] / SL / DB / MetaSetup / PeriodicInvoicesConfig.pm
index ab3a619..aeaf1c2 100644 (file)
@@ -10,15 +10,18 @@ __PACKAGE__->meta->setup(
   table   => 'periodic_invoices_configs',
 
   columns => [
-    id          => { type => 'integer', not_null => 1, sequence => 'id' },
-    oe_id       => { type => 'integer', not_null => 1 },
-    periodicity => { type => 'varchar', length => 10, not_null => 1 },
-    print       => { type => 'boolean', default => 'false' },
-    printer_id  => { type => 'integer' },
-    copies      => { type => 'integer' },
-    active      => { type => 'boolean', default => 'true' },
-    start_date  => { type => 'date' },
-    ar_chart_id => { type => 'integer', not_null => 1 },
+    id                      => { type => 'integer', not_null => 1, sequence => 'id' },
+    oe_id                   => { type => 'integer', not_null => 1 },
+    periodicity             => { type => 'varchar', length => 10, not_null => 1 },
+    print                   => { type => 'boolean', default => 'false' },
+    printer_id              => { type => 'integer' },
+    copies                  => { type => 'integer' },
+    active                  => { type => 'boolean', default => 'true' },
+    start_date              => { type => 'date' },
+    ar_chart_id             => { type => 'integer', not_null => 1 },
+    terminated              => { type => 'boolean', default => 'false' },
+    end_date                => { type => 'date' },
+    extend_automatically_by => { type => 'integer' },
   ],
 
   primary_key_columns => [ 'id' ],