Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision b8b112a3

Von Sven Schöling vor mehr als 11 Jahren hinzugefügt

  • ID b8b112a39bd601b0bc717646d78de470631da22a
  • Vorgänger c0931303
  • Nachfolger 2d7e4203

MetaSetup neu generiert

Unterschiede anzeigen:

SL/DB/MetaSetup/PeriodicInvoice.pm
6 6

  
7 7
use base qw(SL::DB::Object);
8 8

  
9
__PACKAGE__->meta->setup(
10
  table   => 'periodic_invoices',
11

  
12
  columns => [
13
    id                => { type => 'integer', not_null => 1, sequence => 'id' },
14
    config_id         => { type => 'integer', not_null => 1 },
15
    ar_id             => { type => 'integer', not_null => 1 },
16
    period_start_date => { type => 'date', not_null => 1 },
17
    itime             => { type => 'timestamp', default => 'now()' },
18
  ],
19

  
20
  primary_key_columns => [ 'id' ],
21

  
22
  allow_inline_column_values => 1,
23

  
24
  foreign_keys => [
25
    ar => {
26
      class       => 'SL::DB::Invoice',
27
      key_columns => { ar_id => 'id' },
28
    },
29

  
30
    config => {
31
      class       => 'SL::DB::PeriodicInvoicesConfig',
32
      key_columns => { config_id => 'id' },
33
    },
34
  ],
9
__PACKAGE__->meta->table('periodic_invoices');
10

  
11
__PACKAGE__->meta->columns(
12
  id                => { type => 'integer', not_null => 1, sequence => 'id' },
13
  config_id         => { type => 'integer', not_null => 1 },
14
  ar_id             => { type => 'integer', not_null => 1 },
15
  period_start_date => { type => 'date', not_null => 1 },
16
  itime             => { type => 'timestamp', default => 'now()' },
35 17
);
36 18

  
19
__PACKAGE__->meta->primary_key_columns([ 'id' ]);
20

  
21
__PACKAGE__->meta->allow_inline_column_values(1);
22

  
23
__PACKAGE__->meta->foreign_keys(
24
  ar => {
25
    class       => 'SL::DB::Invoice',
26
    key_columns => { ar_id => 'id' },
27
  },
28
);
29

  
30
# __PACKAGE__->meta->initialize;
31

  
37 32
1;
38 33
;

Auch abrufbar als: Unified diff