Add files via upload

master
Costas K 6 years ago committed by GitHub
parent 083bd079ae
commit b8d9c8eb00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,13 @@
select
prefs.id as 'ID',
prefs.groupID as 'gID',
prefs.settingID as 'sID',
groups.name as 'SourceURL',
prefs.value as 'TargetFolder',
datetime(prefs.timestamp,'unixepoch','localtime') as 'TimeStamp',
settings.name as 'Setting'
from prefs
join groups on prefs.groupID = groups.id
join settings on prefs.settingID = settings.id
order by TimeStamp desc
Loading…
Cancel
Save