use SL::DB::TodoUserConfig;
use SL::DB::TransferType;
use SL::DB::Translation;
+use SL::DB::TriggerInformation;
use SL::DB::Unit;
use SL::DB::UnitsLanguage;
use SL::DB::VC;
todo_user_config => 'todo_user_config',
transfer_type => 'transfer_type',
translation => 'translation',
+ trigger_information => 'trigger_information',
units => 'unit',
units_language => 'units_language',
vendor => 'vendor',
--- /dev/null
+# This file has been auto-generated only because it didn't exist.
+# Feel free to modify it at will; it will not be overwritten automatically.
+
+package SL::DB::Manager::TriggerInformation;
+
+use strict;
+
+use SL::DB::Helper::Manager;
+use base qw(SL::DB::Helper::Manager);
+
+sub object_class { 'SL::DB::TriggerInformation' }
+
+__PACKAGE__->make_manager_methods;
+
+1;
--- /dev/null
+# This file has been auto-generated. Do not modify it; it will be overwritten
+# by rose_auto_create_model.pl automatically.
+package SL::DB::TriggerInformation;
+
+use strict;
+
+use base qw(SL::DB::Object);
+
+__PACKAGE__->meta->table('trigger_information');
+
+__PACKAGE__->meta->columns(
+ id => { type => 'serial', not_null => 1 },
+ key => { type => 'text', not_null => 1 },
+ value => { type => 'text' },
+);
+
+__PACKAGE__->meta->primary_key_columns([ 'id' ]);
+
+__PACKAGE__->meta->unique_keys([ 'key', 'value' ]);
+
+1;
+;
--- /dev/null
+# This file has been auto-generated only because it didn't exist.
+# Feel free to modify it at will; it will not be overwritten automatically.
+
+package SL::DB::TriggerInformation;
+
+use strict;
+
+use SL::DB::MetaSetup::TriggerInformation;
+use SL::DB::Manager::TriggerInformation;
+
+__PACKAGE__->meta->initialize;
+
+1;