]> wagnertech.de Git - mfinanz.git/blob - SL/DB/MetaSetup/File.pm
kivitendo 3.9.2-0.2
[mfinanz.git] / SL / DB / MetaSetup / File.pm
1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
3 package SL::DB::File;
4
5 use strict;
6
7 use parent qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('files');
10
11 __PACKAGE__->meta->columns(
12   backend       => { type => 'enum', check_in => [ 'Filesystem', 'Webdav' ], db_type => 'files_backends', not_null => 1 },
13   backend_data  => { type => 'text' },
14   description   => { type => 'text' },
15   file_name     => { type => 'text', not_null => 1 },
16   file_type     => { type => 'text', not_null => 1 },
17   id            => { type => 'serial', not_null => 1 },
18   itime         => { type => 'timestamp', default => 'now()' },
19   mime_type     => { type => 'text', not_null => 1 },
20   mtime         => { type => 'timestamp' },
21   object_id     => { type => 'integer', not_null => 1 },
22   object_type   => { type => 'enum', check_in => [ 'sales_quotation', 'sales_order', 'sales_order_intake', 'request_quotation', 'purchase_quotation_intake', 'purchase_order', 'purchase_order_confirmation', 'sales_delivery_order', 'supplier_delivery_order', 'purchase_delivery_order', 'rma_delivery_order', 'invoice', 'invoice_for_advance_payment', 'final_invoice', 'credit_note', 'purchase_invoice', 'sales_reclamation', 'purchase_reclamation', 'dunning', 'dunning1', 'dunning2', 'dunning3', 'dunning_orig_invoice', 'dunning_invoice', 'customer', 'vendor', 'gl_transaction', 'part', 'shop_image', 'draft', 'letter', 'project', 'statement' ], db_type => 'file_object_types', not_null => 1 },
23   print_variant => { type => 'text' },
24   source        => { type => 'text', not_null => 1 },
25   title         => { type => 'varchar', length => 45 },
26   uid           => { type => 'text' },
27 );
28
29 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
30
31 __PACKAGE__->meta->allow_inline_column_values(1);
32
33 1;
34 ;