Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision aa08ecd9

Von Kivitendo Admin vor 10 Monaten hinzugefügt

  • ID aa08ecd957c44c9bbe67e56368147be95c927419
  • Vorgänger ddd35e5f
  • Nachfolger e73d55ce

Warengruppen hierarchisch - DB

Unterschiede anzeigen:

SL/DB/MetaSetup/PartsGroup.pm
14 14
  itime       => { type => 'timestamp', default => 'now()' },
15 15
  mtime       => { type => 'timestamp' },
16 16
  obsolete    => { type => 'boolean', default => 'false' },
17
  parent_id   => { type => 'integer' },
17 18
  partsgroup  => { type => 'text' },
18 19
  sortkey     => { type => 'integer', not_null => 1 },
19 20
);
......
22 23

  
23 24
__PACKAGE__->meta->allow_inline_column_values(1);
24 25

  
26
__PACKAGE__->meta->foreign_keys(
27
  parent => {
28
    class       => 'SL::DB::PartsGroup',
29
    key_columns => { parent_id => 'id' },
30
  },
31
);
32

  
25 33
1;
26 34
;

Auch abrufbar als: Unified diff