Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision d7077fec

Von Kivitendo Admin vor 6 Monaten 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
__PACKAGE__->meta->table('partsgroup');
__PACKAGE__->meta->columns(
id => { type => 'integer', not_null => 1, sequence => 'id' },
itime => { type => 'timestamp', default => 'now()' },
mtime => { type => 'timestamp' },
obsolete => { type => 'boolean', default => 'false' },
partsgroup => { type => 'text' },
sortkey => { type => 'integer', not_null => 1 },
description => { type => 'text' },
id => { type => 'integer', not_null => 1, sequence => 'id' },
itime => { type => 'timestamp', default => 'now()' },
mtime => { type => 'timestamp' },
obsolete => { type => 'boolean', default => 'false' },
partsgroup => { type => 'text' },
sortkey => { type => 'integer', not_null => 1 },
);
__PACKAGE__->meta->primary_key_columns([ 'id' ]);

Auch abrufbar als: Unified diff