Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision b8b112a3

Von Sven Schöling vor mehr als 11 Jahren hinzugefügt

  • ID b8b112a39bd601b0bc717646d78de470631da22a
  • Vorgänger c0931303
  • Nachfolger 2d7e4203

MetaSetup neu generiert

Unterschiede anzeigen:

SL/DB/MetaSetup/TodoUserConfig.pm
6 6

  
7 7
use base qw(SL::DB::Object);
8 8

  
9
__PACKAGE__->meta->setup(
10
  table   => 'todo_user_config',
11

  
12
  columns => [
13
    employee_id                         => { type => 'integer', not_null => 1 },
14
    show_after_login                    => { type => 'boolean', default => 'true' },
15
    show_follow_ups                     => { type => 'boolean', default => 'true' },
16
    show_follow_ups_login               => { type => 'boolean', default => 'true' },
17
    show_overdue_sales_quotations       => { type => 'boolean', default => 'true' },
18
    show_overdue_sales_quotations_login => { type => 'boolean', default => 'true' },
19
    id                                  => { type => 'serial', not_null => 1 },
20
  ],
21

  
22
  primary_key_columns => [ 'id' ],
23

  
24
  foreign_keys => [
25
    employee => {
26
      class       => 'SL::DB::Employee',
27
      key_columns => { employee_id => 'id' },
28
    },
29
  ],
9
__PACKAGE__->meta->table('todo_user_config');
10

  
11
__PACKAGE__->meta->columns(
12
  employee_id                         => { type => 'integer', not_null => 1 },
13
  show_after_login                    => { type => 'boolean', default => 'true' },
14
  show_follow_ups                     => { type => 'boolean', default => 'true' },
15
  show_follow_ups_login               => { type => 'boolean', default => 'true' },
16
  show_overdue_sales_quotations       => { type => 'boolean', default => 'true' },
17
  show_overdue_sales_quotations_login => { type => 'boolean', default => 'true' },
18
  id                                  => { type => 'serial', not_null => 1 },
30 19
);
31 20

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

  
23
__PACKAGE__->meta->foreign_keys(
24
  employee => {
25
    class       => 'SL::DB::Employee',
26
    key_columns => { employee_id => 'id' },
27
  },
28
);
29

  
30
# __PACKAGE__->meta->initialize;
31

  
32 32
1;
33 33
;

Auch abrufbar als: Unified diff