]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/MetaSetup/Printer.pm
S:P:Dunning: Link führt nicht mehr zum Drucken, sondern zum Mahnungsbericht, …
[kivitendo-erp.git] / SL / DB / MetaSetup / Printer.pm
index f093e5bb57b9c8f38ca401c311e7aead98a616f1..0e961d431269bb9deb0869e657a4ec3af48f620e 100644 (file)
@@ -4,20 +4,18 @@ package SL::DB::Printer;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('printers');
 
 __PACKAGE__->meta->columns(
   id                  => { type => 'integer', not_null => 1, sequence => 'id' },
-  printer_description => { type => 'text', not_null => 1 },
   printer_command     => { type => 'text' },
+  printer_description => { type => 'text', not_null => 1 },
   template_code       => { type => 'text' },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
-# __PACKAGE__->meta->initialize;
-
 1;
 ;