Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision d2c5f647

Von Moritz Bunkus vor etwa 9 Jahren hinzugefügt

  • ID d2c5f6474ebd578ce46e09484780cfea556abb5e
  • Vorgänger 1cc7b9e6
  • Nachfolger 20d730ac

rose_auto_create_model.pl: --all behandelt auch auth-Tabellen

Unterschiede anzeigen:

SL/DB/MetaSetup/AuthUserConfig.pm
4 4

  
5 5
use strict;
6 6

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

  
9 9
__PACKAGE__->meta->table('user_config');
10 10
__PACKAGE__->meta->schema('auth');
11 11

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

  
18 18
__PACKAGE__->meta->primary_key_columns([ 'user_id', 'cfg_key' ]);
......
24 24
  },
25 25
);
26 26

  
27
# __PACKAGE__->meta->initialize;
28

  
29 27
1;
30 28
;

Auch abrufbar als: Unified diff