Revision 09a63fcb
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
SL/DB/Helper/ALL.pm | ||
---|---|---|
99 | 99 |
use SL::DB::TodoUserConfig; |
100 | 100 |
use SL::DB::TransferType; |
101 | 101 |
use SL::DB::Translation; |
102 |
use SL::DB::TriggerInformation; |
|
102 | 103 |
use SL::DB::Unit; |
103 | 104 |
use SL::DB::UnitsLanguage; |
104 | 105 |
use SL::DB::VC; |
SL/DB/Helper/Mappings.pm | ||
---|---|---|
179 | 179 |
todo_user_config => 'todo_user_config', |
180 | 180 |
transfer_type => 'transfer_type', |
181 | 181 |
translation => 'translation', |
182 |
trigger_information => 'trigger_information', |
|
182 | 183 |
units => 'unit', |
183 | 184 |
units_language => 'units_language', |
184 | 185 |
vendor => 'vendor', |
SL/DB/Manager/TriggerInformation.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::Manager::TriggerInformation; |
|
5 |
|
|
6 |
use strict; |
|
7 |
|
|
8 |
use SL::DB::Helper::Manager; |
|
9 |
use base qw(SL::DB::Helper::Manager); |
|
10 |
|
|
11 |
sub object_class { 'SL::DB::TriggerInformation' } |
|
12 |
|
|
13 |
__PACKAGE__->make_manager_methods; |
|
14 |
|
|
15 |
1; |
SL/DB/MetaSetup/TriggerInformation.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::TriggerInformation; |
|
4 |
|
|
5 |
use strict; |
|
6 |
|
|
7 |
use base qw(SL::DB::Object); |
|
8 |
|
|
9 |
__PACKAGE__->meta->table('trigger_information'); |
|
10 |
|
|
11 |
__PACKAGE__->meta->columns( |
|
12 |
id => { type => 'serial', not_null => 1 }, |
|
13 |
key => { type => 'text', not_null => 1 }, |
|
14 |
value => { type => 'text' }, |
|
15 |
); |
|
16 |
|
|
17 |
__PACKAGE__->meta->primary_key_columns([ 'id' ]); |
|
18 |
|
|
19 |
__PACKAGE__->meta->unique_keys([ 'key', 'value' ]); |
|
20 |
|
|
21 |
1; |
|
22 |
; |
SL/DB/TriggerInformation.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::TriggerInformation; |
|
5 |
|
|
6 |
use strict; |
|
7 |
|
|
8 |
use SL::DB::MetaSetup::TriggerInformation; |
|
9 |
use SL::DB::Manager::TriggerInformation; |
|
10 |
|
|
11 |
__PACKAGE__->meta->initialize; |
|
12 |
|
|
13 |
1; |
Auch abrufbar als: Unified diff
Fehlende Models für Tabelle "trigger_information"