summaryrefslogtreecommitdiff
path: root/lib/Multi/RG.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-10-21 14:21:38 +0200
committerYorhel <git@yorhel.nl>2009-10-21 14:24:10 +0200
commit96e77619793fbe8351e023d17e257e96cdb37509 (patch)
tree6d501f042ffeb7b0dd852a9430aeb5690548c5c1 /lib/Multi/RG.pm
parent0325073d1eb045628f6090c7be4ee9685d7ec159 (diff)
SQL: Renamed vn_graphs to relgraphs and synced dbgraph.pl
As the same table can easily be used to store producer relation graphs as well.
Diffstat (limited to 'lib/Multi/RG.pm')
-rw-r--r--lib/Multi/RG.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Multi/RG.pm b/lib/Multi/RG.pm
index 1ee69911..5cb03ed4 100644
--- a/lib/Multi/RG.pm
+++ b/lib/Multi/RG.pm
@@ -220,7 +220,7 @@ sub savegraph {
$w->end();
# save the processed SVG in the database and fetch graph ID
- $_[KERNEL]->post(pg => query => 'INSERT INTO vn_graphs (svg) VALUES (?) RETURNING id', [ $svg ], 'finish');
+ $_[KERNEL]->post(pg => query => 'INSERT INTO relgraphs (svg) VALUES (?) RETURNING id', [ $svg ], 'finish');
}