Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 3eb3d1b1

Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt

  • ID 3eb3d1b144adb92e62de08e67dc6ff3d39bf7483
  • Vorgänger e7ae5b6a
  • Nachfolger 0b5b8355

MetaSetup: Spalten- und Fremdschlüsselnamen alphabetisch sortieren

Unterschiede anzeigen:

SL/DB/MetaSetup/GenericTranslation.pm
11 11
__PACKAGE__->meta->columns(
12 12
  id               => { type => 'serial', not_null => 1 },
13 13
  language_id      => { type => 'integer' },
14
  translation_type => { type => 'varchar', length => 100, not_null => 1 },
15
  translation_id   => { type => 'integer' },
16 14
  translation      => { type => 'text' },
15
  translation_id   => { type => 'integer' },
16
  translation_type => { type => 'varchar', length => 100, not_null => 1 },
17 17
);
18 18

  
19 19
__PACKAGE__->meta->primary_key_columns([ 'id' ]);
......
25 25
  },
26 26
);
27 27

  
28
# __PACKAGE__->meta->initialize;
29

  
30 28
1;
31 29
;

Auch abrufbar als: Unified diff