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/Bin.pm
6 6

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

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

  
12
  columns => [
13
    id           => { type => 'integer', not_null => 1, sequence => 'id' },
14
    warehouse_id => { type => 'integer', not_null => 1 },
15
    description  => { type => 'text' },
16
    itime        => { type => 'timestamp', default => 'now()' },
17
    mtime        => { type => 'timestamp' },
18
  ],
19

  
20
  primary_key_columns => [ 'id' ],
21

  
22
  allow_inline_column_values => 1,
23

  
24
  foreign_keys => [
25
    warehouse => {
26
      class       => 'SL::DB::Warehouse',
27
      key_columns => { warehouse_id => 'id' },
28
    },
29
  ],
9
__PACKAGE__->meta->table('bin');
10

  
11
__PACKAGE__->meta->columns(
12
  id           => { type => 'integer', not_null => 1, sequence => 'id' },
13
  warehouse_id => { type => 'integer', not_null => 1 },
14
  description  => { type => 'text' },
15
  itime        => { type => 'timestamp', default => 'now()' },
16
  mtime        => { type => 'timestamp' },
30 17
);
31 18

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

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

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

  
30
# __PACKAGE__->meta->initialize;
31

  
32 32
1;
33 33
;

Auch abrufbar als: Unified diff