use SL::DB::RMA;
use SL::DB::SepaExport;
use SL::DB::SepaExportItem;
+use SL::DB::SchemaInfo;
use SL::DB::Shipto;
use SL::DB::Tax;
use SL::DB::Taxkey;
# these are not managed _yet_, but will hopefully at some point.
# if you are confident that one of these works, remove it here.
my @lxoffice_blacklist_temp = qw(
- schema_info
);
my @lxoffice_blacklist = (@lxoffice_blacklist_permanent, @lxoffice_blacklist_temp);
rma => 'RMA',
sepa_export => 'sepa_export',
sepa_export_items => 'sepa_export_item',
+ schema_info => 'schema_info',
tax => 'tax',
taxkeys => 'taxkey',
units => 'unit',
--- /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::SchemaInfo;
+
+use strict;
+
+use base qw(SL::DB::Object);
+
+__PACKAGE__->meta->setup(
+ table => 'schema_info',
+
+ columns => [
+ tag => { type => 'text', not_null => 1 },
+ login => { type => 'text' },
+ itime => { type => 'timestamp', default => 'now()' },
+ ],
+
+ primary_key_columns => [ 'tag' ],
+
+ allow_inline_column_values => 1,
+);
+
+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::SchemaInfo;
+
+use strict;
+
+use SL::DB::MetaSetup::SchemaInfo;
+
+# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
+__PACKAGE__->meta->make_manager_class;
+
+1;