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

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

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

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

  
19
  primary_key_columns => [ 'id' ],
20

  
21
  allow_inline_column_values => 1,
22

  
23
  foreign_keys => [
24
    config => {
25
      class       => 'SL::DB::CustomVariableConfig',
26
      key_columns => { config_id => 'id' },
27
    },
28
  ],
9
__PACKAGE__->meta->table('custom_variables_validity');
10

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

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

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

  
22
__PACKAGE__->meta->foreign_keys(
23
  config => {
24
    class       => 'SL::DB::CustomVariableConfig',
25
    key_columns => { config_id => 'id' },
26
  },
29 27
);
30 28

  
29
# __PACKAGE__->meta->initialize;
30

  
31 31
1;
32 32
;

Auch abrufbar als: Unified diff