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/AuthClientUser.pm
6 6

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

  
9
__PACKAGE__->meta->setup(
10
  table   => 'clients_users',
11
  schema  => 'auth',
12

  
13
  columns => [
14
    client_id => { type => 'integer', not_null => 1 },
15
    user_id   => { type => 'integer', not_null => 1 },
16
  ],
17

  
18
  primary_key_columns => [ 'client_id', 'user_id' ],
19

  
20
  foreign_keys => [
21
    client => {
22
      class       => 'SL::DB::AuthClient',
23
      key_columns => { client_id => 'id' },
24
    },
25

  
26
    user => {
27
      class       => 'SL::DB::AuthUser',
28
      key_columns => { user_id => 'id' },
29
    },
30
  ],
9
__PACKAGE__->meta->table('clients_users');
10
__PACKAGE__->meta->schema('auth');
11

  
12
__PACKAGE__->meta->columns(
13
  client_id => { type => 'integer', not_null => 1 },
14
  user_id   => { type => 'integer', not_null => 1 },
15
);
16

  
17
__PACKAGE__->meta->primary_key_columns([ 'client_id', 'user_id' ]);
18

  
19
__PACKAGE__->meta->foreign_keys(
20
  client => {
21
    class       => 'SL::DB::AuthClient',
22
    key_columns => { client_id => 'id' },
23
  },
24

  
25
  user => {
26
    class       => 'SL::DB::AuthUser',
27
    key_columns => { user_id => 'id' },
28
  },
31 29
);
32 30

  
31
# __PACKAGE__->meta->initialize;
32

  
33 33
1;
34 34
;

Auch abrufbar als: Unified diff