aboutsummaryrefslogtreecommitdiffstats
path: root/db/rerun_dbic_loader.pl
diff options
context:
space:
mode:
authorEdmund von der Burg <evdb@mysociety.org>2011-03-15 17:06:29 +0000
committerEdmund von der Burg <evdb@mysociety.org>2011-03-15 17:06:29 +0000
commit49f2e32d97c29d2bf96ea4cfd3c8199e2923b11f (patch)
tree77d8048caad0882a7ca6a4c3f87c8b192650052e /db/rerun_dbic_loader.pl
parentc522061ea36ff9456dce5159d22a0a02dbb50cf5 (diff)
Update DBIC Schema
Diffstat (limited to 'db/rerun_dbic_loader.pl')
-rwxr-xr-xdb/rerun_dbic_loader.pl18
1 files changed, 14 insertions, 4 deletions
diff --git a/db/rerun_dbic_loader.pl b/db/rerun_dbic_loader.pl
index ed2fd6375..7a3f41503 100755
--- a/db/rerun_dbic_loader.pl
+++ b/db/rerun_dbic_loader.pl
@@ -13,10 +13,20 @@ use DBIx::Class::Schema::Loader qw/ make_schema_at /;
# create a exclude statement that filters out the table that we are not
# interested in
my @tables_to_ignore = (
- 'abuse', 'admin_log', 'alert', 'alert_sent',
- 'alert_type', 'comment', 'contacts', 'contacts_history',
- 'debugdate', 'flickr_imported', 'partial_user', 'problem',
- 'questionnaire', 'secret', 'textmystreet',
+ 'abuse', #
+ 'admin_log', #
+ 'alert', #
+ 'alert_sent', #
+ 'alert_type', #
+ 'comment', #
+ 'contacts', #
+ 'contacts_history', #
+ 'debugdate', #
+ 'flickr_imported', #
+ 'partial_user', #
+ 'questionnaire', #
+ 'secret', #
+ 'textmystreet', #
);
my $exclude = '^(?:' . join( '|', @tables_to_ignore ) . ')$';