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

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

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

  
12
  columns => [
13
    id          => { type => 'varchar', length => 50, not_null => 1 },
14
    module      => { type => 'varchar', length => 50, not_null => 1 },
15
    submodule   => { type => 'varchar', length => 50, not_null => 1 },
16
    description => { type => 'text' },
17
    itime       => { type => 'timestamp', default => 'now()' },
18
    form        => { type => 'text' },
19
    employee_id => { type => 'integer' },
20
  ],
21

  
22
  primary_key_columns => [ 'id' ],
23

  
24
  allow_inline_column_values => 1,
25

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

  
11
__PACKAGE__->meta->columns(
12
  id          => { type => 'varchar', length => 50, not_null => 1 },
13
  module      => { type => 'varchar', length => 50, not_null => 1 },
14
  submodule   => { type => 'varchar', length => 50, not_null => 1 },
15
  description => { type => 'text' },
16
  itime       => { type => 'timestamp', default => 'now()' },
17
  form        => { type => 'text' },
18
  employee_id => { type => 'integer' },
32 19
);
33 20

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

  
23
__PACKAGE__->meta->allow_inline_column_values(1);
24

  
25
# __PACKAGE__->meta->initialize;
26

  
34 27
1;
35 28
;

Auch abrufbar als: Unified diff