fix bug in files_sql_update.pl

This commit is contained in:
Andrew Pamment 2017-09-28 18:02:26 +10:00
parent 7aea5a869d
commit 8ada1a50ea

View File

@ -21,7 +21,7 @@ sub check_exists {
FetchHashKeyName => 'NAME_lc',
});
my $sql = "PRAGMA table_info(users)";
my $sql = "PRAGMA table_info(files)";
my $sth = $dbh->prepare($sql);
my $gotneeded;