Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision d7077fec

Von Kivitendo Admin vor 9 Tagen hinzugefügt

  • ID d7077fec02c2d9293e83834010fca4bf8b7d09b6
  • Vorgänger 9fe89a1e
  • Nachfolger 6d14c91b

Warengruppe um Feld "Beschreibung" erweitert

Um z.B. zusätzliche Informationen zu hinterlegen, wenn man die Artikel
z.B. für einen Katalog exportieren möchte.

Unterschiede anzeigen:

SL/DB/MetaSetup/PartsGroup.pm
9 9
__PACKAGE__->meta->table('partsgroup');
10 10

  
11 11
__PACKAGE__->meta->columns(
12
  id         => { type => 'integer', not_null => 1, sequence => 'id' },
13
  itime      => { type => 'timestamp', default => 'now()' },
14
  mtime      => { type => 'timestamp' },
15
  obsolete   => { type => 'boolean', default => 'false' },
16
  partsgroup => { type => 'text' },
17
  sortkey    => { type => 'integer', not_null => 1 },
12
  description => { type => 'text' },
13
  id          => { type => 'integer', not_null => 1, sequence => 'id' },
14
  itime       => { type => 'timestamp', default => 'now()' },
15
  mtime       => { type => 'timestamp' },
16
  obsolete    => { type => 'boolean', default => 'false' },
17
  partsgroup  => { type => 'text' },
18
  sortkey     => { type => 'integer', not_null => 1 },
18 19
);
19 20

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

Auch abrufbar als: Unified diff