From e68a727f9a3da01b5f452393936e43680b3646b2 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Thu, 12 May 2022 20:21:48 +0200 Subject: [PATCH] Drop redundant columns from `files` and `folders` relations in `xml.dbscheme` --- ql/lib/xml.dbscheme | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ql/lib/xml.dbscheme b/ql/lib/xml.dbscheme index 8e909080bf3..aa2155a69e2 100644 --- a/ql/lib/xml.dbscheme +++ b/ql/lib/xml.dbscheme @@ -51,16 +51,12 @@ numlines( files( unique int id: @file, - string name: string ref, - string simple: string ref, - string ext: string ref, - int fromSource: int ref // deprecated + string name: string ref ); folders( unique int id: @folder, - string name: string ref, - string simple: string ref + string name: string ref ); @container = @folder | @file