Merge pull request #738 from hvitved/xml-dbscheme-files-folders

Drop redundant columns from `files` and `folders` relations in `xml.dbscheme`
This commit is contained in:
Chris Smowton
2022-05-13 10:35:45 +01:00
committed by GitHub

View File

@@ -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