summaryrefslogtreecommitdiff
path: root/util/sqleditfunc.pl
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-04-04 12:32:52 +0200
committerYorhel <git@yorhel.nl>2020-04-04 12:36:53 +0200
commita53e57953a9f4a9912c70901b3841fd30a80bd1d (patch)
treeaa548ae4aa862655742f86e5ae5c569be460091a /util/sqleditfunc.pl
parenta1ed3e6a8601a061bfa9228e4856d604e4113464 (diff)
SQL reorg: Move util/sql/ to sql/ as a top-level dir
Been wanting to do this for a while... I've kept util/sql as a symlink for compatibility with the devdump, old update scripts and other code I may have forgotten. I'll remove it later.
Diffstat (limited to 'util/sqleditfunc.pl')
-rwxr-xr-xutil/sqleditfunc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sqleditfunc.pl b/util/sqleditfunc.pl
index 3375136a..2af28b6a 100755
--- a/util/sqleditfunc.pl
+++ b/util/sqleditfunc.pl
@@ -52,7 +52,7 @@ sub gensql {
}
-open my $F, '>', "$ROOT/util/sql/editfunc.sql" or die $!;
+open my $F, '>', "$ROOT/sql/editfunc.sql" or die $!;
print $F "-- Automatically generated by util/sqleditfunc.pl. DO NOT EDIT.\n";
print $F gensql $_ for sort grep $schema->{$_}{dbentry_type}, keys %$schema;