Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 85da554f

Von Sven Schöling vor etwa 14 Jahren hinzugefügt

  • ID 85da554f9ca728db840c0122e2c3535953919c64
  • Vorgänger 4eb7c2eb
  • Nachfolger 3cc8ad87

SchamInfo -> Rose Model

Unterschiede anzeigen:

SL/DB/Helpers/ALL.pm
42 42
use SL::DB::RMA;
43 43
use SL::DB::SepaExport;
44 44
use SL::DB::SepaExportItem;
45
use SL::DB::SchemaInfo;
45 46
use SL::DB::Shipto;
46 47
use SL::DB::Tax;
47 48
use SL::DB::Taxkey;
SL/DB/Helpers/Mappings.pm
14 14
# these are not managed _yet_, but will hopefully at some point.
15 15
# if you are confident that one of these works, remove it here.
16 16
my @lxoffice_blacklist_temp = qw(
17
     schema_info
18 17
);
19 18

  
20 19
my @lxoffice_blacklist = (@lxoffice_blacklist_permanent, @lxoffice_blacklist_temp);
......
56 55
  rma                            => 'RMA',
57 56
  sepa_export                    => 'sepa_export',
58 57
  sepa_export_items              => 'sepa_export_item',
58
  schema_info                    => 'schema_info',
59 59
  tax                            => 'tax',
60 60
  taxkeys                        => 'taxkey',
61 61
  units                          => 'unit',
SL/DB/MetaSetup/SchemaInfo.pm
1
# This file has been auto-generated. Do not modify it; it will be overwritten
2
# by rose_auto_create_model.pl automatically.
3
package SL::DB::SchemaInfo;
4

  
5
use strict;
6

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

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

  
12
  columns => [
13
    tag   => { type => 'text', not_null => 1 },
14
    login => { type => 'text' },
15
    itime => { type => 'timestamp', default => 'now()' },
16
  ],
17

  
18
  primary_key_columns => [ 'tag' ],
19

  
20
  allow_inline_column_values => 1,
21
);
22

  
23
1;
24
;
SL/DB/SchemaInfo.pm
1
# This file has been auto-generated only because it didn't exist.
2
# Feel free to modify it at will; it will not be overwritten automatically.
3

  
4
package SL::DB::SchemaInfo;
5

  
6
use strict;
7

  
8
use SL::DB::MetaSetup::SchemaInfo;
9

  
10
# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
11
__PACKAGE__->meta->make_manager_class;
12

  
13
1;

Auch abrufbar als: Unified diff