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/Note.pm
9 9
__PACKAGE__->meta->table('notes');
10 10

  
11 11
__PACKAGE__->meta->columns(
12
  id           => { type => 'integer', not_null => 1, sequence => 'note_id' },
13
  subject      => { type => 'text' },
14 12
  body         => { type => 'text' },
15 13
  created_by   => { type => 'integer', not_null => 1 },
16
  trans_id     => { type => 'integer' },
17
  trans_module => { type => 'varchar', length => 10 },
14
  id           => { type => 'integer', not_null => 1, sequence => 'note_id' },
18 15
  itime        => { type => 'timestamp', default => 'now()' },
19 16
  mtime        => { type => 'timestamp' },
17
  subject      => { type => 'text' },
18
  trans_id     => { type => 'integer' },
19
  trans_module => { type => 'varchar', length => 10 },
20 20
);
21 21

  
22 22
__PACKAGE__->meta->primary_key_columns([ 'id' ]);
......
30 30
  },
31 31
);
32 32

  
33
# __PACKAGE__->meta->initialize;
34

  
35 33
1;
36 34
;

Auch abrufbar als: Unified diff